Discover/arXiv API
live

arXiv APIarxiv.org

Search arXiv research papers by keyword, author, title, or category. Fetch full metadata by arXiv ID. Browse the complete category taxonomy. 3 endpoints.

Endpoint health
verified 3h ago
get_paper
get_category_taxonomy
search_papers
3/3 passing latest checkself-healing
Endpoints
3
Updated
20d ago

What is the arXiv API?

The arXiv API covers 3 endpoints that let you search millions of research papers, retrieve detailed metadata for any paper by its arXiv ID, and browse the full category taxonomy across disciplines. The search_papers endpoint accepts keyword, author, title, and category filters simultaneously, returning paginated results with abstracts, authors, PDF links, and category assignments.

Try it
General keyword search across all fields
Starting index for pagination (0-based)
Title keywords to search for
Author name to search for
Sort field for results
arXiv category code (e.g., cs.AI, math.CO, hep-th)
Sort direction for results
Maximum number of results to return (max 100)
api.parse.bot/scraper/9380e1b0-fae2-4340-9056-3d416f86c775/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9380e1b0-fae2-4340-9056-3d416f86c775/search_papers?query=neural+network&start=0&sort_by=relevance&sort_order=descending&max_results=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace arxiv-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.arxiv_research_papers_api import Arxiv, SortField, Ordering, PaperNotFound

arxiv = Arxiv()

# Search for recent papers on transformers in machine learning
for paper in arxiv.papers.search(query="transformer", category="cs.LG", sort_by=SortField.SUBMITTED_DATE, sort_order=Ordering.DESCENDING, limit=5):
    print(paper.title, paper.arxiv_id, paper.published)

# Fetch detailed metadata for a specific paper
detail = arxiv.papers.get(arxiv_id="2301.00001")
print(detail.title, detail.authors, detail.summary, detail.categories)

# Browse the Computer Science category taxonomy
for group in arxiv.categorygroups.list(group="Computer Science"):
    print(group.group_name)
    for cat in group.categories:
        print(cat.id, cat.name, cat.description)
All endpoints · 3 totalmissing one? ·

Full-text search over arXiv papers using keyword, author, title, and category filters combined with AND logic. At least one search parameter (query, author, title, or category) must be provided. Paginates via start index. Each paper includes its arXiv ID, title, authors, abstract, categories, publication dates, and links.

Input
ParamTypeDescription
querystringGeneral keyword search across all fields
startintegerStarting index for pagination (0-based)
titlestringTitle keywords to search for
authorstringAuthor name to search for
sort_bystringSort field for results
categorystringarXiv category code (e.g., cs.AI, math.CO, hep-th)
sort_orderstringSort direction for results
max_resultsintegerMaximum number of results to return (max 100)
Response
{
  "type": "object",
  "fields": {
    "papers": "array of paper objects with arxiv_id, title, authors, summary, categories, primary_category, published, updated, pdf_url, abs_url, comment, journal_ref, doi",
    "start_index": "integer pagination offset",
    "total_results": "integer total number of matching papers"
  },
  "sample": {
    "data": {
      "papers": [
        {
          "doi": null,
          "title": "PyramidTNT: Improved Transformer-in-Transformer Baselines with Pyramid Architecture",
          "abs_url": "https://arxiv.org/abs/2201.00978v1",
          "authors": [
            "Kai Han",
            "Jianyuan Guo",
            "Yehui Tang",
            "Yunhe Wang"
          ],
          "comment": "Tech Report",
          "pdf_url": "https://arxiv.org/pdf/2201.00978v1",
          "summary": "Transformer networks have achieved great progress...",
          "updated": "2022-01-04T04:56:57Z",
          "arxiv_id": "2201.00978v1",
          "published": "2022-01-04T04:56:57Z",
          "categories": [
            "cs.CV"
          ],
          "journal_ref": null,
          "primary_category": "cs.CV"
        }
      ],
      "start_index": 0,
      "total_results": 170341
    },
    "status": "success"
  }
}

About the arXiv API

Searching Papers

The search_papers endpoint accepts up to four independent search fields — query (general keyword), author, title, and category — combined with AND logic. At least one must be provided. Results are paginated via start (0-based offset) and max_results (up to 100 per call). The total_results field in the response tells you how many papers match overall. Sort options include relevance, lastUpdatedDate, and submittedDate in either direction via sort_order.

Each paper object in the results array includes arxiv_id, title, authors (array of names), summary (full abstract text), categories (all assigned category codes), primary_category, published and updated timestamps in ISO 8601, and direct pdf_url and abs_url links.

Fetching a Specific Paper

The get_paper endpoint takes a single arxiv_id and returns the full metadata record for that paper. The ID can be in current format (2301.00001), versioned format (2301.00001v1), or legacy format (hep-th/9901001). The response includes the doi field (string or null), an optional comment field for author-provided notes, and all the same title, abstract, author, category, and link fields returned by search.

Category Taxonomy

get_category_taxonomy returns the complete arXiv subject hierarchy. Each entry in the groups array contains a group_name (e.g., Computer Science, Physics, Mathematics, Quantitative Biology, Quantitative Finance) and a categories array of objects with id, name, and description. Pass the optional group parameter to filter down to a single discipline, which is useful when building category pickers or validating category codes before passing them to search_papers.

Reliability & maintenanceVerified

The arXiv API is a managed, monitored endpoint for arxiv.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when arxiv.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official arxiv.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a literature review tool that queries search_papers by author name and exports abstracts to a spreadsheet
  • Monitor a research area by polling search_papers with a category code like cs.AI sorted by submittedDate to surface new papers
  • Resolve a list of arXiv IDs to full metadata records including DOI and PDF URL using get_paper in bulk
  • Populate a category selector UI from get_category_taxonomy so users can filter searches by valid arXiv subject codes
  • Cross-reference papers in a citation graph by fetching doi and abs_url fields from get_paper for each node
  • Ingest paper metadata into a RAG pipeline using summary and authors fields from search_papers results
  • Track version history of a specific paper by fetching versioned IDs (e.g., 2301.00001v1, 2301.00001v2) via get_paper
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does arXiv have an official developer API?+
Yes. arXiv provides the arXiv API at https://arxiv.org/help/api/index, which exposes paper search and metadata over Atom XML using query syntax. The Parse API surfaces the same underlying data in JSON with structured parameters, avoiding manual XML parsing.
What does `get_paper` return that `search_papers` does not?+
get_paper returns two additional fields not present in search results: doi (a DOI string or null) and comment (an author-supplied note string or null, often containing page counts, conference names, or revision notes). Both endpoints return title, authors, summary, categories, timestamps, and URLs.
How does pagination work in `search_papers`?+
Use the start parameter (0-based) combined with max_results (maximum 100) to page through results. The response includes total_results so you can compute how many pages exist. For example, to fetch the second page of 25 results, set start=25 and max_results=25.
Does the API return full paper PDFs or citation counts?+
No. The API returns pdf_url (a direct link to the PDF on arXiv) and abs_url (the abstract page URL), but does not fetch or return the PDF content itself. Citation counts and reference lists are also not exposed — those are not part of arXiv's own metadata. You can fork this API on Parse and revise it to add an endpoint that fetches and parses the PDF content or integrates citation data from a source like Semantic Scholar.
Are preprint versions other than the latest accessible?+
Yes, for get_paper you can pass a versioned ID like 2301.00001v1 or 2301.00001v2 to retrieve metadata for a specific revision. However, search_papers results always reflect the latest version of each paper. Version-specific search filtering is not currently supported. You can fork this API on Parse and revise it to add version-aware search behavior.
Page content last updated . Spec covers 3 endpoints from arxiv.org.
Related APIs in EducationSee all →
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
jstor.org API
Search and browse millions of academic articles, journals, and research issues from JSTOR's library, or retrieve specific articles and journal details to explore scholarly content by subject. Access peer-reviewed research across multiple disciplines to find the academic sources you need.
ieeexplore.ieee.org API
Search for scientific papers and retrieve their metadata, abstracts, references, and citations from IEEE Xplore's collection of journals and conferences. Look up author profiles, browse journals, and access paper details and full text sections all programmatically.
textures.com API
Search and browse millions of textures by category or keyword to find high-resolution texture maps with detailed pricing and specifications. Discover the latest content additions, explore free samples, and access complete metadata including available resolutions and texture maps for your projects.
aeaweb.org API
Search for academic papers across American Economic Association journals to instantly access abstracts, author information, JEL classifications, and citation metrics. Retrieve detailed article information to stay current with the latest economic research and citations from premier sources like the American Economic Review.
springer.com API
Search and retrieve metadata for millions of articles, books, and journals from Springer Nature's research library using DOI or ISBN lookups, with powerful filtering and pagination options. Get detailed information about academic publications including journal details, article metadata, and book information to power your research tools and discovery applications.
mdpi.com API
Access MDPI's open-access academic content programmatically. Search across thousands of peer-reviewed articles, retrieve full structured text, extract key findings, and browse journal metadata including impact factors and CiteScores.
openaccess.thecvf.com API
Search and browse computer vision research papers from major conferences like CVPR, ICCV, and WACV, including detailed metadata and author information. Find papers by conference, workshop, keyword, or author to discover the latest open access research in computer vision.