ArXiv Preprint Paper Search avatar

ArXiv Preprint Paper Search

Under maintenance

Pricing

Pay per usage

Go to Apify Store
ArXiv Preprint Paper Search

ArXiv Preprint Paper Search

Under maintenance

Search and extract arXiv preprint papers by category, author, title, and date range. Returns title, authors, abstract, PDF URL, categories, primary category, and submission date as structured records.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Mori

Mori

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Search and extract arXiv preprint papers by category, author, title, and date range. Returns title, authors, abstract, PDF URL, categories, primary category, and submission date as structured records.

Source

arXiv public API: http://export.arxiv.org/api/query?search_query=<q>&max_results=<N>&sortBy=<s>&start=<off>

Returns Atom XML. No auth, no proxy, no captcha.

Inputs

  • searchQuery (string, required) — arXiv query syntax (e.g. cat:cs.AI, au:lecun, all:transformer AND cat:cs.LG). See arXiv API docs.
  • maxResults (integer, 1-200, default 25) — cap on returned records.
  • sortBy (enum, default submittedDate) — relevance | lastUpdatedDate | submittedDate.
  • start (integer, 0-10000, default 0) — pagination offset.

Output

One dataset record per paper:

{
"id": "http://arxiv.org/abs/2507.12345v1",
"arxivId": "2507.12345",
"title": "Show HN: ...",
"authors": ["Author One", "Author Two"],
"summary": "Abstract text...",
"published": "2025-07-09T17:59:59Z",
"updated": "2025-07-10T12:00:00Z",
"primaryCategory": "cs.AI",
"categories": ["cs.AI", "cs.LG"],
"pdfUrl": "http://arxiv.org/pdf/2507.12345v1",
"absUrl": "http://arxiv.org/abs/2507.12345v1",
"doi": "10.1234/...",
"comment": "Accepted at NeurIPS 2025",
"searchQuery": "cat:cs.AI",
"fetchedAt": "2026-07-09T..."
}

Run

make install
make run
make push