Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.sync.listReposByCollection

atproto-lexicons.bsky.social

Documentation

main query

Enumerates all the DIDs which have records with the given collection NSID.

Parameters

collection string nsid Required

A namespaced identifier (e.g., app.bsky.feed.post).

cursor string Optional

No description provided.

limit integer Optional

Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists.

Output

Encodingapplication/json
cursor string Optional

No description provided.

repos array Required

No description provided.

Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "repos"
      ],
      "properties": {
        "repos": {
          "type": "array",
          "items": {
            "ref": "#repo",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "collection"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 500,
        "maximum": 2000,
        "minimum": 1,
        "description": "Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists."
      },
      "cursor": {
        "type": "string"
      },
      "collection": {
        "type": "string",
        "format": "nsid"
      }
    }
  },
  "description": "Enumerates all the DIDs which have records with the given collection NSID."
}
repo object

Properties

did string did Required

A decentralized identifier (DID).

View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    }
  }
}

Lexicon Garden

@