get_paper
Retrieve detailed information about a specific academic paper using its ID (e.g., Semantic Scholar ID, DOI, ArXiv ID). Specify desired fields to streamline results for research or analysis.
Instructions
Get detailed information about a specific paper.
Args:
paper_id: Paper ID (can be Semantic Scholar ID, DOI, ArXiv ID, etc.)
fields: Comma-separated list of fields to return
Returns:
Detailed paper information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
paper_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
},
"paper_id": {
"title": "Paper Id",
"type": "string"
}
},
"required": [
"paper_id"
],
"title": "get_paperArguments",
"type": "object"
}