dev.tsunagite.listCharts

tsunagite.dev

Documentation

Batch chart fetch

main query

Batch chart fetch

Parameters

cursor string Optional

Opaque string - receive from a previous request as the `cursor` value

game string at-uri Required

The game to find chart records for.

limit integer Optional

How many records to return.

owner string at-identifier Optional

The handle or DID of the account to filter results to.

song string at-uri Required

The song to find chart records for.

Output

Encodingapplication/json
charts array Required

No description available.

cursor string Optional

Opaque string - pass back in a future request as the `cursor` value

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
Opaque string - receive from a previous request as the `cursor` value
The game to find chart records for.
How many records to return.
The handle or DID of the account to filter results to.
The song to find chart records for.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "charts"
      ],
      "properties": {
        "charts": {
          "type": "array",
          "items": {
            "ref": "dev.tsunagite.chart",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "description": "Opaque string - pass back in a future request as the `cursor` value"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "game",
      "song"
    ],
    "properties": {
      "game": {
        "type": "string",
        "format": "at-uri",
        "description": "The game to find chart records for."
      },
      "song": {
        "type": "string",
        "format": "at-uri",
        "description": "The song to find chart records for."
      },
      "limit": {
        "type": "integer",
        "default": 20,
        "maximum": 100,
        "description": "How many records to return."
      },
      "owner": {
        "type": "string",
        "format": "at-identifier",
        "description": "The handle or DID of the account to filter results to."
      },
      "cursor": {
        "type": "string",
        "description": "Opaque string - receive from a previous request as the `cursor` value"
      }
    }
  },
  "description": "Batch chart fetch"
}

Lexicon Garden

@