arXiv
APIFree REST API for accessing arXiv's curated research papers
Overview
The arXiv API enables programmatic access to its curated repository of research papers spanning physics, mathematics, quantitative finance, and economics. Key endpoints include search (by keywords, authors, subjects), metadata retrieval (title, abstract, authors, submission date), and batch queries. Responses are formatted in XML. Use cases include building academic research tools, citation trackers, educational platforms integrating latest papers, or analyzing research trends. It supports filtering by subject area, date ranges, and author names to refine results efficiently.
Example Integration (JavaScript)
fetch('https://arxiv.org/help/api/user-manual')
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err)); Key Features
- RESTful
- XML response format
- No authentication required
- Subject area filtering
- Batch query support
Frequently Asked Questions
? Is the arXiv API free to use?
Yes, the arXiv API is completely free for non-commercial and commercial use with no subscription fees.
? Does the arXiv API require an API key?
No, authentication is not required—you can make requests directly without an API key.
? What is the response format of the arXiv API?
Responses are exclusively in XML format; there is no native JSON support at this time.
Top Alternatives
People Also Ask about arXiv
Tool Info
Pros
- ⊕ Free access to curated research metadata
- ⊕ Covers diverse STEM/econ disciplines
- ⊕ No API key needed
- ⊕ Flexible search parameters
Cons
- ⊖ XML-only responses (no JSON option)
- ⊖ Rate-limited to prevent abuse
- ⊖ No full-text paper access via API