pub.chive.eprint.listByAuthor

chive.pub

Documentation

List eprints by author DID

main query

List eprints by author DID

Parameters

cursor string Optional

No description available.

did string did Required

Author DID

limit integer Optional

No description available.

sortBy string Optional

No description available.

sortOrder string Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

eprints array Required

No description available.

total integer Optional

No description available.

Errors

NotFound
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
Author DID
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "eprints"
      ],
      "properties": {
        "total": {
          "type": "integer"
        },
        "cursor": {
          "type": "string"
        },
        "eprints": {
          "type": "array",
          "items": {
            "ref": "#eprintSummary",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "Author DID"
      },
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "sortBy": {
        "type": "string",
        "default": "indexedAt",
        "knownValues": [
          "indexedAt",
          "publishedAt",
          "updatedAt"
        ]
      },
      "sortOrder": {
        "type": "string",
        "default": "desc",
        "knownValues": [
          "asc",
          "desc"
        ]
      }
    }
  },
  "description": "List eprints by author DID"
}
authorRef object

No description available.

Properties

avatarUrl string uri Optional

Author avatar URL

did string did Optional

A decentralized identifier (DID).

displayName string Optional

No description available.

handle string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "handle": {
      "type": "string"
    },
    "avatarUrl": {
      "type": "string",
      "format": "uri",
      "description": "Author avatar URL"
    },
    "displayName": {
      "type": "string"
    }
  }
}
eprintSummary object

No description available.

Properties

abstract array of union Optional
authors array of ref#authorRef Optional

No description available.

cid string cid Optional

A content identifier (CID) referencing immutable data.

fields array of ref#fieldRef Optional

No description available.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

publishedAt string datetime Optional

An RFC 3339 formatted timestamp.

title string Required

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "title",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "title": {
      "type": "string"
    },
    "fields": {
      "type": "array",
      "items": {
        "ref": "#fieldRef",
        "type": "ref"
      }
    },
    "authors": {
      "type": "array",
      "items": {
        "ref": "#authorRef",
        "type": "ref"
      }
    },
    "abstract": {
      "type": "array",
      "items": {
        "refs": [
          "pub.chive.richtext.defs#textItem",
          "pub.chive.richtext.defs#nodeRefItem",
          "pub.chive.richtext.defs#wikidataRefItem",
          "pub.chive.richtext.defs#fieldRefItem",
          "pub.chive.richtext.defs#facetRefItem",
          "pub.chive.richtext.defs#eprintRefItem",
          "pub.chive.richtext.defs#annotationRefItem",
          "pub.chive.richtext.defs#authorRefItem",
          "pub.chive.richtext.defs#mentionItem",
          "pub.chive.richtext.defs#linkItem",
          "pub.chive.richtext.defs#tagItem",
          "pub.chive.richtext.defs#latexItem",
          "pub.chive.richtext.defs#codeBlockItem",
          "pub.chive.richtext.defs#headingItem",
          "pub.chive.richtext.defs#listItem",
          "pub.chive.richtext.defs#blockquoteItem"
        ],
        "type": "union"
      },
      "maxLength": 500,
      "description": "Rich abstract with text, formatting, and entity references"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    },
    "publishedAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}
fieldRef object

No description available.

Properties

id string Optional

Optional unique ID

label string Required

Human-readable field label

uri string Required

AT URI of the field node

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "label"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "Optional unique ID"
    },
    "uri": {
      "type": "string",
      "description": "AT URI of the field node"
    },
    "label": {
      "type": "string",
      "description": "Human-readable field label"
    }
  }
}

Lexicon Garden

@