fetch_paper_details
Retrieve comprehensive details for a specific academic paper, including metadata and abstracts, by providing its unique identifier and preferred database source (Crossref or Semantic Scholar).
Instructions
Get detailed information about a specific paper.
Args:
paper_id: Paper identifier (DOI for Crossref, paper ID for Semantic Scholar)
source: Source database ("semantic_scholar" or "crossref")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paper_id | Yes | ||
source | No | semantic_scholar |
Input Schema (JSON Schema)
{
"properties": {
"paper_id": {
"title": "Paper Id",
"type": "string"
},
"source": {
"default": "semantic_scholar",
"title": "Source",
"type": "string"
}
},
"required": [
"paper_id"
],
"title": "fetch_paper_detailsArguments",
"type": "object"
}