games.gamesgamesgamesgames.feed.getListItems

gamesgamesgamesgames.games

Documentation

Get paginated game items from a list.

main query

Get paginated game items from a list.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

listUri string at-uri Required

The AT-URI of the list.

Output

Encodingapplication/json
cursor string Optional

No description available.

items array Required

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 AT-URI of the list.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#listItemView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "listUri"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 30,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "listUri": {
        "type": "string",
        "format": "at-uri",
        "description": "The AT-URI of the list."
      }
    }
  },
  "description": "Get paginated game items from a list."
}
listItemView object

No description available.

Properties

addedAt string datetime Required

An RFC 3339 formatted timestamp.

game unknown Required

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "addedAt",
    "game"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "game": {
      "type": "unknown"
    },
    "addedAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@