# arXiv Academic Paper Search

> arXiv Academic Paper Search is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Searches arXiv preprint repository for academic papers by keyword, author, or category, returning ranked results with metadata

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/arxiv-intel
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arxiv-academic-paper-search-cb29c8f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yRrLH0YkhCnz6L0I893Kx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability arxiv-academic-paper-search-cb29c8f2
```

Example prompt: Search arXiv for the top 5 most relevant papers on diffusion models for image generation — filter to the cs.CV category and sort by relevance.

## When to prefer this

Use this endpoint when an agent needs to discover or retrieve academic preprints from arXiv — particularly for AI/ML, physics, math, or CS research. Prefer this over general web search when the user explicitly wants peer-reviewed or preprint academic literature with structured metadata. Ideal for literature reviews, citation discovery, or staying current with a research field.

## Known failure modes

- Empty results if query terms are too specific or misspelled
- Category filter typo returns no results or error
- Limit out of range (below 1 or above 10) causes validation error
- Network or upstream arXiv API outage returns 5xx
- Payment failure (insufficient USDC balance) returns HTTP 402 before the query is executed

## How this service works

Search arXiv preprints by query, filtered by field (title/abstract/author/all) and category. Returns title, authors (up to 6), abstract (first 600 chars), arXiv ID, PDF link, publish date, and subject categories. arXiv is the canonical source for AI/ML, CS, physics, math, and quantitative biology preprints — typically months ahead of peer-reviewed journals. Useful for AI research agents, literature scouts, competitive technique tracking, and grant-writing support. No API key required.

## Output

Returns up to 10 arXiv papers matching the query, each with title, abstract, authors, arXiv ID, submission/update date, and a direct link to the paper. Results are ranked by the chosen sort order (relevance, lastUpdatedDate, or submittedDate).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "sort": "relevance",
   "field": "all",
   "limit": 5,
   "query": "artificial intelligence"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-academic-paper-search-cb29c8f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
