com.atproto.sync.listReposByCollection

microcosm.blue View official

Documentation

Enumerates all the active DIDs which have records in any of the given collection NSIDs. If omitted, active DIDs from all collections are returned.

main query

Enumerates all the active DIDs which have records in any of the given collection NSIDs. If omitted, active DIDs from all collections are returned.

Parameters

collection array of string Optional

No description available.

cursor string Optional

No description available.

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 available.

repos array Required

No description available.

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": [],
    "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": "array",
        "items": {
          "type": "string",
          "format": "nsid"
        }
      }
    }
  },
  "description": "Enumerates all the active DIDs which have records in any of the given collection NSIDs. If omitted, active DIDs from all collections are returned."
}
repo object

No description available.

Properties

did string did Required

A decentralized identifier (DID).

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

Lexicon Garden

@