ooo.bsky.authfetch.describeRepo

lexicon.store

Documentation

Gets information about your account and its associated hidden repository, including the list of collections. Requires auth.

main query

Gets information about your account and its associated hidden repository, including the list of collections. Requires auth.

Output

Encodingapplication/json
collections array Required

The list of collection NSIDs in the hidden repository.

did stringdid Required

The DID of the repository owner.

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)
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "did",
        "collections"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The DID of the repository owner."
        },
        "collections": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "nsid"
          },
          "description": "The list of collection NSIDs in the hidden repository."
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Gets information about your account and its associated hidden repository, including the list of collections. Requires auth."
}

Lexicon Garden

@