get_paper_references
Retrieve a list of academic papers referenced by a specific paper using the Semantic Scholar API. Specify paper ID, results limit, offset, and fields for tailored output.
Instructions
Get papers referenced by a specific paper.
Args:
paper_id: Paper ID to get references 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 referenced 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_referencesArguments",
"type": "object"
}