pub.chive.admin.listReviews

chive.pub

Documentation

List indexed reviews with pagination

main query

List indexed reviews with pagination

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Maximum number of results

Output

Encodingapplication/json
items array Optional

Review records

total integer Required

Total reviews

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": "#reviewSummary",
            "type": "ref"
          },
          "description": "Review records"
        },
        "total": {
          "type": "integer",
          "description": "Total reviews"
        }
      }
    },
    "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 reviews with pagination"
}
reviewSummary object

Summary of an indexed review

Properties

authorDid string did Required

Reviewer DID

authorHandle string Optional

Reviewer handle

createdAt string datetime Required

When the review was created

eprintUri string at-uri Required

Reviewed eprint AT URI

uri string at-uri Required

Review AT URI

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

Lexicon Garden

@