pub.chive.admin.listEndorsements

chive.pub

Documentation

List indexed endorsements with pagination

main query

List indexed endorsements with pagination

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Maximum number of results

Output

Encodingapplication/json
items array Optional

Endorsement records

total integer Required

Total endorsements

Errors

AuthenticationRequired
AdminRequired
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
Maximum number of results
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "AdminRequired"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "total"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#endorsementSummary",
            "type": "ref"
          },
          "description": "Endorsement records"
        },
        "total": {
          "type": "integer",
          "description": "Total endorsements"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of results"
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor"
      }
    }
  },
  "description": "List indexed endorsements with pagination"
}
endorsementSummary object

Summary of an indexed endorsement

Properties

authorDid string did Required

Endorser DID

authorHandle string Optional

Endorser handle

createdAt string datetime Required

When the endorsement was created

eprintUri string at-uri Required

Endorsed eprint AT URI

uri string at-uri Required

Endorsement AT URI

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "eprintUri",
    "authorDid",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "Endorsement AT URI"
    },
    "authorDid": {
      "type": "string",
      "format": "did",
      "description": "Endorser DID"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "When the endorsement was created"
    },
    "eprintUri": {
      "type": "string",
      "format": "at-uri",
      "description": "Endorsed eprint AT URI"
    },
    "authorHandle": {
      "type": "string",
      "description": "Endorser handle"
    }
  },
  "description": "Summary of an indexed endorsement"
}

Lexicon Garden

@