app.rocksky.charts.getTopArtists

rocksky.app

Documentation

Get top artists

main query

Get top artists

Parameters

endDate string datetime Optional

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

limit integer Optional

The maximum number of artists to return

offset integer Optional

The offset for pagination

startDate string datetime Optional

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

Output

Encodingapplication/json
artists 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 end date to filter artists to (ISO 8601 format)
The maximum number of artists to return
The offset for pagination
The start date to filter artists from (ISO 8601 format)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "artists": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.artist.defs#artistViewBasic",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "description": "The maximum number of artists to return"
      },
      "offset": {
        "type": "integer",
        "minimum": 0,
        "description": "The offset for pagination"
      },
      "endDate": {
        "type": "string",
        "format": "datetime",
        "description": "The end date to filter artists to (ISO 8601 format)"
      },
      "startDate": {
        "type": "string",
        "format": "datetime",
        "description": "The start date to filter artists from (ISO 8601 format)"
      }
    }
  },
  "description": "Get top artists"
}

Lexicon Garden

@