pub.chive.collection.listByOwner

chive.pub

Documentation

List collections owned by a specific user

main query

List collections owned by a specific user

Parameters

cursor string Optional

Pagination cursor

did string Required

DID of the collection owner

limit integer Optional

Maximum results to return

Output

Encodingapplication/json
collections array Required

Collections owned by the user

cursor string Optional

Pagination cursor for next page

hasMore boolean Required

Whether more results exist

total integer Required

Total count of collections

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
DID of the collection owner
Maximum results to return
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "collections",
        "hasMore",
        "total"
      ],
      "properties": {
        "total": {
          "type": "integer",
          "description": "Total count of collections"
        },
        "cursor": {
          "type": "string",
          "description": "Pagination cursor for next page"
        },
        "hasMore": {
          "type": "boolean",
          "description": "Whether more results exist"
        },
        "collections": {
          "type": "array",
          "items": {
            "ref": "pub.chive.collection.defs#collectionView",
            "type": "ref"
          },
          "description": "Collections owned by the user"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "description": "DID of the collection owner"
      },
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum results to return"
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor"
      }
    }
  },
  "description": "List collections owned by a specific user"
}

Lexicon Garden

@