pub.chive.collection.getFeed

chive.pub

Documentation

Get the activity feed for a collection, aggregating events from tracked items

main query

Get the activity feed for a collection, aggregating events from tracked items

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Maximum events to return

uri string Required

AT-URI of the collection

Output

Encodingapplication/json
cursor string Optional

Pagination cursor for next page

events array Required

Feed events in reverse chronological order

hasMore boolean Required

Whether more events exist

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
Pagination cursor
Maximum events to return
AT-URI of the collection
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "events",
        "hasMore"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Pagination cursor for next page"
        },
        "events": {
          "type": "array",
          "items": {
            "ref": "pub.chive.collection.defs#feedEventView",
            "type": "ref"
          },
          "description": "Feed events in reverse chronological order"
        },
        "hasMore": {
          "type": "boolean",
          "description": "Whether more events exist"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "description": "AT-URI of the collection"
      },
      "limit": {
        "type": "integer",
        "default": 30,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum events to return"
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor"
      }
    }
  },
  "description": "Get the activity feed for a collection, aggregating events from tracked items"
}

Lexicon Garden

@