Full metadata for one or more papers by arXiv id
API · /arxiv-api
arXiv API
Search the entire arXiv scholarly-preprint corpus as an API — millions of papers across physics, mathematics, computer science, quantitative biology and finance, statistics, electrical engineering and economics. Query by free text, title, author and/or subject category (e.g. q=transformer&category=cs.AI), with paging and sort by relevance, submission or last-update date, or pull full metadata for any paper by its arXiv id (e.g. 1706.03762 → "Attention Is All You Need"). Every result carries the title, full author list, abstract, primary and cross-list categories, DOI, journal reference, comments and a direct PDF link. Ideal for literature-review and research tools, citation managers, ML/AI paper trackers, academic search and discovery, and science newsletters.
API health
degraded- Uptime
- 92.59%
- Server probes · 24h
- Avg latency
- 2239 ms
- Server probes · 24h
- Subscribers
- 3,617
- active
- Total calls
- 16
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 3,900 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 3,900 calls/month
- 2 req/sec
- Search + paper lookup
- No credit card
Starter
€5.60 /month
- 58,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 58k calls/month
- 8 req/sec
- Category & author filters
- Email support
Pro
€14.40 /month
- 290,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 290k calls/month
- 20 req/sec
- Lit-review & paper trackers
- Priority support
Mega
€37.90 /month
- 1,450,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.45M calls/month
- 50 req/sec
- Research & discovery platforms
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Research Organizations API
Every research organization in the world as an API — powered by ROR, the Research Organization Registry. ROR assigns a persistent open identifier (a ROR ID) to universities, government labs, companies, nonprofits, hospitals, archives and research facilities, with rich, curated metadata and crosswalks to GRID, ISNI, Wikidata and the Crossref Funder Registry. Search the registry by name (and filter by country or organization type); resolve any ROR ID to its full record — names, acronyms and aliases, types, location (city, country, coordinates), website, domains, external identifiers and relationships to parent and child organizations; and match a messy free-text affiliation string ("Dept. of Physics, Heidelberg University, Germany") to the most likely organizations with a confidence score — perfect for cleaning and disambiguating author-affiliation data. It is a research-organization identifier registry, distinct from a plain university directory, and a natural companion to ORCID (for people) in any scholarly-metadata stack. Open data from ROR (CC0).
api.oanor.com/ror-api
OpenCitations API
Scholarly citations as open data — powered by OpenCitations (COCI), the open citation index. Unlike a metadata lookup, OpenCitations treats every citation as a first-class object: given a DOI you can list the papers that cite it (incoming citations) and the papers it references (outgoing), each annotated with its OpenCitations Identifier (OCI), the date the citation was created, the timespan between the two works, and whether it is a journal- or author-self-citation. Plus quick citation and reference counts for any DOI. It is built for citation-network and bibliometric work — research-impact analysis, self-citation detection, citation-timespan studies and science mapping — and is distinct from scholarly-metadata services (Crossref, OpenAlex). From a single paper to a whole reference graph, ideal for bibliometrics, research-analytics and reference-management tools. Open data from OpenCitations (CC0).
api.oanor.com/opencitations-api
DOAJ API
The Directory of Open Access Journals as an API, powered by DOAJ — the authoritative, community-curated index of vetted open-access scholarship covering more than 20,000 quality-controlled journals and 10 million+ articles across every discipline. Search open-access journals with full Elasticsearch query syntax, getting each journal's title, ISSNs, publisher and country, subjects, languages, whether article-processing charges (APC) apply, license and the year it became open access; read a journal's complete record including its subjects with classification scheme, keywords, licences, APC prices, fee-waiver policy, peer-review process, plagiarism detection, long-term preservation and self-archiving (deposit) policies and homepage; search open-access articles returning title, authors, journal, year, DOI, keywords and a free full-text link; and read an article's full metadata with its abstract, authors and affiliations, journal and ISSNs, pages, subjects and direct links to the freely readable full text. Ideal for open-science tooling, library and repository systems, research discovery, APC and policy analysis, and any application that needs legally free, peer-reviewed scholarship. Identify a journal by its ISSN and an article by its DOI or DOAJ id from search results. Data from DOAJ.
api.oanor.com/doaj-api
ORCID API
ORCID as an API — the global researcher identity registry, powered by the ORCID Public API. An ORCID iD (for example 0000-0002-1825-0097) uniquely and persistently identifies a researcher across journals, funders, universities and the entire scholarly record. Search more than 15 million researchers by name, institution, keyword or external identifier using rich Solr field syntax, getting each match's ORCID iD, name, other names and affiliated institutions; read a researcher's public profile including their published and credit names, biography, research keywords, country, personal and lab websites and external identifiers such as Scopus Author ID or ResearcherID; list the works they have claimed on their record with each work's title, type, publication year, journal and DOI; and trace their employment and education affiliations with the organization, role, department and dates. Ideal for research-information systems, author disambiguation, institutional reporting, scholarly tooling and academic search. ORCID iDs come from search results or are supplied directly by the researcher. Data is the public portion of ORCID records (CC0). For the scholarly works and citation graph see the OpenAlex API; for DOIs and journal metadata the Crossref API.
api.oanor.com/orcid-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for arXiv API?
What's the rate limit for arXiv API?
How much does arXiv API cost?
Can I cancel my subscription anytime?
Is arXiv API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/arxiv-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/arxiv-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/arxiv-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/arxiv-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.