app.rocksky.artist.getArtistTracks

rocksky.app

Documentation

Get artist's tracks

main query

Get artist's tracks

Parameters

limit integer Optional

The maximum number of tracks to return

offset integer Optional

The offset for pagination

uri string at-uri Optional

The URI of the artist to retrieve albums from

Output

Encodingapplication/json
tracks 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 maximum number of tracks to return
The offset for pagination
The URI of the artist to retrieve albums from
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "tracks": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.song.defs#songViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "The URI of the artist to retrieve albums from"
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "description": "The maximum number of tracks to return"
      },
      "offset": {
        "type": "integer",
        "minimum": 0,
        "description": "The offset for pagination"
      }
    }
  },
  "description": "Get artist's tracks"
}

Lexicon Garden

@