arxiv_get_paper
Retrieve full metadata for an arXiv paper by its ID, including title, authors, abstract, categories, and links to PDF and abstract page.
Instructions
Retrieve full metadata for a specific arXiv paper by its ID.
Returns complete information: title, all authors, full abstract, categories, dates, journal reference, DOI, and direct links to abstract, PDF, and HTML.
Args: params (GetPaperInput): - paper_id (str): arXiv ID, e.g. '2303.08774', '1706.03762v2', or old-style 'hep-th/9901001' - response_format (str): markdown | json
Returns: str: Full paper metadata.
JSON schema when response_format='json':
{ "id", "title", "authors", "abstract", "published", "updated",
"primary_category", "categories", "abstract_url", "pdf_url",
"html_url", "comment", "journal_ref", "doi" }Examples: - Attention Is All You Need: paper_id='1706.03762' - GPT-4 technical report: paper_id='2303.08774' - AlphaFold: paper_id='2108.10991'
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |