pub.chive.eprint.listCitations

chive.pub

Documentation

List citations for an eprint (auto-extracted and user-provided)

main query

List citations for an eprint (auto-extracted and user-provided)

Parameters

cursor string Optional

Pagination cursor

eprintUri string at-uri Required

AT-URI of the eprint to list citations for

limit integer Optional

Maximum number of citations to return

source string Optional

Filter by citation source type

Output

Encodingapplication/json
citations array Required

No description available.

cursor string Optional

Pagination cursor for next page

total integer Optional

Total number of matching citations

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
AT-URI of the eprint to list citations for
Maximum number of citations to return
Filter by citation source type
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "citations"
      ],
      "properties": {
        "total": {
          "type": "integer",
          "description": "Total number of matching citations"
        },
        "cursor": {
          "type": "string",
          "description": "Pagination cursor for next page"
        },
        "citations": {
          "type": "array",
          "items": {
            "ref": "#citation",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "eprintUri"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of citations to return"
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor"
      },
      "source": {
        "type": "string",
        "default": "all",
        "description": "Filter by citation source type",
        "knownValues": [
          "all",
          "user",
          "auto"
        ]
      },
      "eprintUri": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the eprint to list citations for"
      }
    }
  },
  "description": "List citations for an eprint (auto-extracted and user-provided)"
}
citation object

No description available.

Properties

arxivId string Optional

arXiv identifier

authors array of string Optional

Author names

chiveUri string at-uri Optional

AT-URI of the cited work if it exists in Chive

citationType string Optional

Semantic type of the citation relationship

confidence integer Optional

Confidence score for auto-extracted citations (0-100)

context string Optional

Contextual note about the citation

createdAt string datetime Optional

When this citation was created or extracted

doi string Optional

DOI of the cited work

isInfluential boolean Optional

Whether this is an influential citation (from Semantic Scholar)

source string Required

Source of the citation data

Known values: semantic-scholar, crossref, grobid, user-provided
title string Required

Title of the cited work

uri string at-uri Optional

AT-URI of the user-provided citation record (if user-provided)

venue string Optional

Publication venue

year integer Optional

Publication year

View raw schema
{
  "type": "object",
  "required": [
    "title",
    "source"
  ],
  "properties": {
    "doi": {
      "type": "string",
      "description": "DOI of the cited work"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the user-provided citation record (if user-provided)"
    },
    "year": {
      "type": "integer",
      "description": "Publication year"
    },
    "title": {
      "type": "string",
      "description": "Title of the cited work"
    },
    "venue": {
      "type": "string",
      "description": "Publication venue"
    },
    "source": {
      "type": "string",
      "description": "Source of the citation data",
      "knownValues": [
        "semantic-scholar",
        "crossref",
        "grobid",
        "user-provided"
      ]
    },
    "arxivId": {
      "type": "string",
      "description": "arXiv identifier"
    },
    "authors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Author names"
    },
    "context": {
      "type": "string",
      "description": "Contextual note about the citation"
    },
    "chiveUri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the cited work if it exists in Chive"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime",
      "description": "When this citation was created or extracted"
    },
    "confidence": {
      "type": "integer",
      "description": "Confidence score for auto-extracted citations (0-100)"
    },
    "citationType": {
      "type": "string",
      "description": "Semantic type of the citation relationship"
    },
    "isInfluential": {
      "type": "boolean",
      "description": "Whether this is an influential citation (from Semantic Scholar)"
    }
  }
}

Lexicon Garden

@