---
title: "Recent papers in a category, date-windowed"
method: GET
path: "/api/v1/research/arxiv/latest"
tags: ["Research"]
---

# Recent papers in a category, date-windowed

`GET /api/v1/research/arxiv/latest`

Return papers submitted to an arXiv.org (Cornell University) subject category within the last `days` days (default 7). Distinct from `/category/{cat}` in that the window is bounded by an explicit date range rather than just the newest N papers; useful for weekly-digest and notification use cases.

## Query parameters

- `cat` string, required — arXiv category code to window (e.g. `cs.AI`, `q-fin.ST`).
- `days` integer — Lookback window in days (1 to 30).
- `limit` integer — Papers per page (1 to 2000).
- `offset` integer — Zero-based offset into the result set (0 to 10000).

## Response `200`

Papers submitted within the requested date window, newest-first.

- EnvelopeArxivSearchPayload
  - `data` ArxivSearchPayload, required — Response payload for `/search`, `/category/{cat}`, `/author/{author_name}`, `/latest`.
    - `query` string, nullable — Composed upstream `search_query` string that produced this result set.
    - `sort_by` string, nullable — Sort key used upstream (`relevance`, `lastUpdatedDate`, or `submittedDate`).
    - `sort_order` string, nullable — Sort direction used upstream (`ascending` or `descending`).
    - `papers` ArxivPaper[], required — Parsed papers on this page, in the upstream sort order.
      - `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.
    - `pagination` ArxivPagination, required — Pagination counters surfaced by the OpenSearch block in the Atom feed.
      - `total_results` integer, nullable — Total matching papers across the entire arXiv corpus for this query (from `<opensearch:totalResults>`).
      - `start_index` integer, nullable — Zero-based offset of the first result on this page (echoed from upstream).
      - `items_per_page` integer, nullable — Page size used by upstream for this response.
      - `limit` integer, required — Page size requested by the caller.
      - `offset` integer, required — Zero-based offset requested by the caller.
  - `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. JSON body with a stable `code` distinguishing `missing_api_key` (no header sent) from `invalid_api_key` (header sent, key not accepted); any other 401 source carries the generic `unauthorized` with its detail as `reason`. Plus `hint`. `plan` is always null on 401 - an unauthenticated request has no plan; quota exhaustion is 429, not 401.
- `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/d3e3d9c28132/schema)
