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

com.atprotofans.getSupporters

atprotofans.com

Documentation

main query

Get a paginated list of supporters for a subject.

Parameters

cursor string Optional

Pagination cursor for fetching additional results.

limit integer Optional

Maximum number of supporters to return.

subject string did Required

DID of the subject to get supporters for.

Output

Encodingapplication/json
cursor string Optional

Pagination cursor for fetching the next page of results.

supporters array Required

List of supporter profiles.

Errors

InvalidRequest Invalid DID format.
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",
  "errors": [
    {
      "name": "InvalidRequest",
      "description": "Invalid DID format."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "supporters"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Pagination cursor for fetching the next page of results."
        },
        "supporters": {
          "type": "array",
          "items": {
            "ref": "com.atprotofans.hydratedProfile",
            "type": "ref"
          },
          "description": "List of supporter profiles."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subject"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of supporters to return."
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor for fetching additional results."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "DID of the subject to get supporters for."
      }
    }
  },
  "description": "Get a paginated list of supporters for a subject."
}

Lexicon Garden

@