---
title: "Fetch a single arXiv paper by identifier"
method: GET
path: "/api/v1/research/arxiv/paper/{arxiv_id}"
tags: ["Research"]
---

# Fetch a single arXiv paper by identifier

`GET /api/v1/research/arxiv/paper/{arxiv_id}`

Fetch a single paper from arXiv.org (Cornell University) by arXiv identifier. Supports both modern `YYMM.NNNNN` format (e.g. `2303.08774`) and legacy `archive(.primary)?/YYMMNNN` format with a slash separator (e.g. `hep-th/9901001`, `math.AG/0509125`). Returns the full parsed entry with title, authors, abstract (LaTeX preserved), categories, DOI and journal reference when available, version number, published/updated timestamps, and abstract/PDF URLs.

## Path parameters

- `arxiv_id` string, required — arXiv identifier - modern `YYMM.NNNNN` or legacy `archive(.primary)?/YYMMNNN`.

## Response `200`

Full parsed entry for the requested paper.

- EnvelopeArxivPaperPayload
  - `data` ArxivPaperPayload, required — Response payload for `/paper/{arxiv_id}`.
    - `arxiv_id` string, required — Canonical arXiv identifier echoed from the path (modern `YYMM.NNNNN` or legacy `archive/YYMMNNN`).
    - `paper` ArxivPaper, required — One paper (one Atom `<entry>`) returned by the arXiv API.
      - `arxiv_id` string, nullable — Canonical arXiv identifier without version suffix (e.g. `2303.08774` or legacy `hep-th/9901001`).
      - `version` integer, nullable — Version number (1-based) of this revision (e.g. 1 for the first upload, 2 for v2). Null when not known.
      - `entry_id` string, nullable — Full `<id>` URL for the entry, including version suffix (e.g. `http://arxiv.org/abs/2303.08774v1`).
      - `title` string, nullable — Paper title as submitted, whitespace-normalized.
      - `summary` string, nullable — Abstract text, whitespace-normalized. Contains raw LaTeX math (e.g. `$O(n \log n)$`) when the author used math mode.
      - `authors` ArxivAuthor[] — Ordered list of authors as supplied on submission.
        - `name` string, nullable — Author full name as supplied on submission, whitespace-normalized (case preserved).
        - `affiliation` string, nullable — Author affiliation string when provided on the submission (often null).
      - `primary_category` string, nullable — arXiv category code the author chose as primary (e.g. `cs.AI`, `q-fin.ST`, `hep-th`).
      - `categories` string[] — All arXiv category codes attached to this paper (primary plus cross-lists).
      - `published` string, nullable — ISO 8601 UTC timestamp of the original (v1) submission. Immutable after submission.
      - `updated` string, nullable — ISO 8601 UTC timestamp of the latest revision. Equals `published` when the paper has only v1.
      - `doi` string, nullable — DOI string (e.g. `10.1143/PTP.101.1155`) when the paper has been published in a journal with a registered DOI; null otherwise.
      - `journal_ref` string, nullable — Freeform journal reference string as filed by the author (e.g. `Prog.Theor.Phys.101:1155-1164,1999`).
      - `comment` string, nullable — Author-supplied comment on the submission (e.g. `Accepted at NeurIPS 2023`, `15 pages, 3 figures`); null when absent.
      - `urls` ArxivUrls — External URLs attached to each arXiv entry.
        - `abstract` string, nullable — Canonical HTML abstract page on arxiv.org (e.g. `https://arxiv.org/abs/2303.08774v1`).
        - `pdf` string, nullable — Direct link to the arXiv-hosted PDF of this version.
        - `doi` string, nullable — DOI URL when the paper has a registered DOI (e.g. `https://doi.org/10.1143/PTP.101.1155`); null otherwise.
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/dcf7427e6897/schema)
