arxiv-search
SolidSearch arXiv for papers by topic, author, or ID. Use when finding research, surveying recent publications, or looking up a specific paper.
Web & Frontend 4 stars
0 forks Updated yesterday MIT
Install
Quality Score: 83/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
- 6 months ago
- Last Updated
- yesterday
- Language
- HTML
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
arxiv
Search arXiv papers by keyword, author, category, or ID.
0 Updated yesterday
sairam0424 AI & Automation Featured
arxiv
Search, download, and summarize academic papers from arXiv. Use when user says "search arxiv", "download paper", "fetch arxiv", "arxiv search", "get paper pdf", or wants to find and save papers from arXiv to the local paper library.
16,018 Updated today
wanshuiyin AI & Automation Listed
arxiv-search
Use when searching arXiv papers by keyword, title, author, abstract, category, or arXiv ID through ArkSpace web_search routing.
0 Updated yesterday
arch3rPro