# arXiv Research Paper Search

> arXiv Research Paper Search is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Searches arXiv's 2M+ paper database using arXiv syntax and optionally provides an LLM-generated plain-English summary of the top result

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/research-paper-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arxiv-research-paper-search-729c4c9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_txAbYJRpb0J334nUqAMDA

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-research-paper-search-729c4c9f -d '<json body>'
```

Example prompt: Search arXiv for up to 5 papers on autonomous reasoning in AI agents within the cs.AI category, and give me a plain-English summary of the top result.

## When to prefer this

Choose this endpoint when you need to search academic literature on arXiv specifically, especially when you want to leverage arXiv's native search syntax (author, title, abstract, category filters) or need an instant LLM plain-English summary of the top result. Prefer this over general web search when the user explicitly wants peer-reviewed or preprint academic papers in physics, CS, math, or biology.

## Known failure modes

- No results found for overly specific or misspelled queries
- arXiv API rate limits or downtime causing search failures
- Invalid arXiv syntax (e.g. malformed category codes) returning empty results
- LLM analysis unavailable or returning incomplete summary when analyze_first is true
- max_results exceeding the allowed maximum of 10 causing validation errors

## How this service works

Research Paper Search: Search arXiv for research papers — 2M+ papers across physics, CS, math, bio, and more. Supports arXiv search syntax: au:LastName (author), ti:word (title), abs:word (abstract), cat:cs.AI (category). Optionally analyzes the top result with LLM for plain-English summary.

## Output

Returns a list of matching arXiv papers with titles, authors, abstracts, arXiv IDs, and publication dates. If analyze_first is enabled, also includes an LLM-generated plain-English summary of the top paper's abstract and key contributions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "title": "Query",
   "description": "Search query (supports arXiv syntax: au:, ti:, abs:, cat:)",
   "json_schema_extra": {
    "example": "AI agents autonomous reasoning"
   }
  },
  "category": {
   "type": "string",
   "title": "Category",
   "default": "",
   "description": "arXiv category filter",
   "json_schema_extra": {
    "example": "cs.AI"
   }
  },
  "max_results": {
   "type": "integer",
   "title": "Max Results",
   "default": 10,
   "maximum": 10,
   "minimum": 1,
   "description": "Max papers (max 10)"
  },
  "analyze_first": {
   "type": "boolean",
   "title": "Analyze First",
   "default": false,
   "description": "Use LLM to analyze the top paper's abstract and contributions"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-research-paper-search-729c4c9f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
