get_paper_citations
Retrieve a list of academic papers that cite a specific paper, with options to customize result limits, offsets, and fields returned for each citation.
Instructions
Get papers that cite a specific paper.
Args:
paper_id: Paper ID to get citations for
limit: Maximum number of results (default: 10, max: 1000)
offset: Number of results to skip (default: 0)
fields: Comma-separated list of fields to return
Returns:
List of citing papers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
limit | No | ||
offset | No | ||
paper_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"paper_id": {
"title": "Paper Id",
"type": "string"
}
},
"required": [
"paper_id"
],
"title": "get_paper_citationsArguments",
"type": "object"
}