app.rocksky.actor.getActorSongs

rocksky.app

Documentation

Get songs for an actor

main query

Get songs for an actor

Parameters

did string at-identifier Required

The DID or handle of the actor

endDate string datetime Optional

The end date to filter albums to (ISO 8601 format)

limit integer Optional

The maximum number of albums to return

offset integer Optional

The offset for pagination

startDate string datetime Optional

The start date to filter albums from (ISO 8601 format)

Output

Encodingapplication/json
songs array Optional

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The DID or handle of the actor
The end date to filter albums to (ISO 8601 format)
The maximum number of albums to return
The offset for pagination
The start date to filter albums from (ISO 8601 format)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "songs": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.song.defs#songViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "at-identifier",
        "description": "The DID or handle of the actor"
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "description": "The maximum number of albums to return"
      },
      "offset": {
        "type": "integer",
        "minimum": 0,
        "description": "The offset for pagination"
      },
      "endDate": {
        "type": "string",
        "format": "datetime",
        "description": "The end date to filter albums to (ISO 8601 format)"
      },
      "startDate": {
        "type": "string",
        "format": "datetime",
        "description": "The start date to filter albums from (ISO 8601 format)"
      }
    }
  },
  "description": "Get songs for an actor"
}

Lexicon Garden

@