social.colibri.channel.listMessages

colibri.social

Documentation

Lists messages in a channel, newest first, paginated.

main query

Lists messages in a channel, newest first, paginated.

Parameters

all boolean Optional

Include hidden (moderated) messages.

channel string at-uri Required

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

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

messages array Required

No description available.

Errors

InvalidRequest A parameter or body field was missing or malformed.
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
Include hidden (moderated) messages.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "InvalidRequest",
      "description": "A parameter or body field was missing or malformed."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "messages"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "messages": {
          "type": "array",
          "items": {
            "ref": "lex:social.colibri.channel.defs#message",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "channel"
    ],
    "properties": {
      "all": {
        "type": "boolean",
        "description": "Include hidden (moderated) messages."
      },
      "limit": {
        "type": "integer"
      },
      "cursor": {
        "type": "string"
      },
      "channel": {
        "type": "string",
        "format": "at-uri"
      }
    }
  },
  "description": "Lists messages in a channel, newest first, paginated."
}

Lexicon Garden

@