games.gamesgamesgamesgames.feed.getList

gamesgamesgamesgames.games

Documentation

Get a single list by its AT-URI, including creator profile info.

main query

Get a single list by its AT-URI, including creator profile info.

Parameters

uri string at-uri Required

The AT-URI of the list record.

Output

Encodingapplication/json
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 record.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "list"
      ],
      "properties": {
        "list": {
          "ref": "#listDetailView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "The AT-URI of the list record."
      }
    }
  },
  "description": "Get a single list by its AT-URI, including creator profile info."
}
creatorView object

No description available.

Properties

avatar unknown Optional

No description available.

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

handle string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "handle"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "avatar": {
      "type": "unknown"
    },
    "handle": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    }
  }
}
listDetailView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

creator ref #creatorView Required

No description available.

description string Optional

No description available.

itemCount integer Required

No description available.

name string 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",
    "name",
    "itemCount",
    "createdAt",
    "creator"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "name": {
      "type": "string"
    },
    "creator": {
      "ref": "#creatorView",
      "type": "ref"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "itemCount": {
      "type": "integer"
    },
    "description": {
      "type": "string"
    }
  }
}

Lexicon Garden

@