fetch_paper_details_from_arxiv
Fetch detailed information for research papers from arXiv using their unique IDs. Ideal for gathering metadata, abstracts, and other essential details to discuss or organize scientific literature.
Instructions
Get the Arxiv info for a list of papers.
Args:
arxiv_ids (list[str] | str): The IDs of the papers to get the Arxiv info for, e.g. ["2503.01469", "2503.01470"]
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arxiv_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"arxiv_ids": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "string"
}
],
"title": "Arxiv Ids"
}
},
"required": [
"arxiv_ids"
],
"title": "fetch_paper_details_from_arxivArguments",
"type": "object"
}