arxiv-search

Solid

Search arXiv for papers by topic, author, or ID. Use when finding research, surveying recent publications, or looking up a specific paper.

Web & Frontend 3 stars 0 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
20
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# arXiv Paper Search Search the arXiv API for academic papers. No authentication required. ## When to Use - User wants to find papers on a topic - User asks about recent research in a field - User provides an arXiv ID and wants details - User wants to compare papers or find related work ## API Details - **Base URL:** `https://export.arxiv.org/api/query` - **Auth:** None required - **Rate limit:** 1 request per 3 seconds (be polite) - **Response format:** Atom XML ## How to Search ### By topic/keywords ```bash curl -sL "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=10&sortBy=submittedDate&sortOrder=descending" ``` Replace spaces in QUERY with `+`. For multi-word phrases, use `%22phrase%22` for exact match. ### By specific field - `ti:` — title - `au:` — author - `abs:` — abstract - `cat:` — category (e.g. `cs.AI`, `cs.CL`, `stat.ML`) - `all:` — all fields Combine with `AND`, `OR`, `ANDNOT`: ```bash # Papers about transformers in NLP curl -sL "https://export.arxiv.org/api/query?search_query=ti:transformer+AND+cat:cs.CL&max_results=10&sortBy=submittedDate&sortOrder=descending" # Papers by a specific author curl -sL "https://export.arxiv.org/api/query?search_query=au:hinton&max_results=10&sortBy=submittedDate&sortOrder=descending" ``` ### By arXiv ID ```bash curl -sL "https://export.arxiv.org/api/query?id_list=2301.07041" ``` Multiple IDs: `id_list=2301.07041,2305.18290` ### Pagination Use `start` parameter: ```bash # Results 11-20 curl...

Details

Author
augchan42
Repository
augchan42/inkstone
Created
5 months ago
Last Updated
4 days ago
Language
HTML
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category