is.currents.feed.getCollectionSaves

currents.is

Documentation

Get saves within a collection, hydrated with collection details, CDN image URLs, and metadata. Auth is optional; if provided, viewer-specific state is included in the collection and save views.

main query

Get saves within a collection, hydrated with collection details, CDN image URLs, and metadata. Auth is optional; if provided, viewer-specific state is included in the collection and save views.

Parameters

collection string at-uri Required

AT-URI of the collection record to fetch saves from.

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

saves 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
AT-URI of the collection record to fetch saves from.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "collection",
        "saves"
      ],
      "properties": {
        "saves": {
          "type": "array",
          "items": {
            "ref": "is.currents.feed.defs#saveView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        },
        "collection": {
          "ref": "is.currents.feed.defs#collectionView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "collection"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "collection": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the collection record to fetch saves from."
      }
    }
  },
  "description": "Get saves within a collection, hydrated with collection details, CDN image URLs, and metadata. Auth is optional; if provided, viewer-specific state is included in the collection and save views."
}

Lexicon Garden

@