pub.chive.admin.listEprints

chive.pub

Documentation

List indexed eprints with pagination

main query

List indexed eprints with pagination

Parameters

limit integer Optional

Maximum number of results

offset integer Optional

Number of results to skip

Output

Encodingapplication/json
items array Required

Eprint records

total integer Required

Total matching eprints

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
Maximum number of results
Number of results to skip
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "AdminRequired"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "items",
        "total"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#eprintSummary",
            "type": "ref"
          },
          "description": "Eprint records"
        },
        "total": {
          "type": "integer",
          "description": "Total matching eprints"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of results"
      },
      "offset": {
        "type": "integer",
        "default": 0,
        "minimum": 0,
        "description": "Number of results to skip"
      }
    }
  },
  "description": "List indexed eprints with pagination"
}
eprintSummary object

Summary of an indexed eprint

Properties

authorDid string did Optional

Author DID

authorHandle string Optional

Author handle

cid string Optional

Content identifier

downloads integer Optional

Total downloads

field string Optional

Primary field

indexedAt string datetime Optional

When the eprint was indexed

status string Optional

Eprint status

title string Required

Eprint title

uri string at-uri Required

Eprint AT URI

views integer Optional

Total views

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "title"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "description": "Content identifier"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "Eprint AT URI"
    },
    "field": {
      "type": "string",
      "description": "Primary field"
    },
    "title": {
      "type": "string",
      "description": "Eprint title"
    },
    "views": {
      "type": "integer",
      "description": "Total views"
    },
    "status": {
      "type": "string",
      "description": "Eprint status"
    },
    "authorDid": {
      "type": "string",
      "format": "did",
      "description": "Author DID"
    },
    "downloads": {
      "type": "integer",
      "description": "Total downloads"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime",
      "description": "When the eprint was indexed"
    },
    "authorHandle": {
      "type": "string",
      "description": "Author handle"
    }
  },
  "description": "Summary of an indexed eprint"
}

Lexicon Garden

@