# arXiv Research Agent - Search & Synthesize

> arXiv Research Agent - Search & Synthesize is a paid API for AI agents from arxiv-research-agent.up.railway.app, paid per call via x402, $0.69/call, status unknown (last checked 2026-09-14).

Searches arXiv for research articles on a given topic and returns a synthesized report with citations.

## Facts

- Endpoint: POST https://arxiv-research-agent.up.railway.app/research
- Price: $0.69/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arxiv-research-agent-search-synthesize-cd258a06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mW3G7bKfXAWUoGiSsUyOn

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-agent-search-synthesize-cd258a06 -d '<json body>'
```

Example prompt: Search arXiv for recent research on diffusion models for image generation and give me a synthesized report with citations.

## When to prefer this

Choose this endpoint when you need a synthesized narrative report from the academic preprint literature on a specific topic, complete with citations, rather than just a raw list of papers. It is ideal for generating literature overviews, state-of-the-art summaries, or research briefings grounded in arXiv content.

## Known failure modes

- No matching papers found for obscure or misspelled topics
- Rate limiting or timeout on the railway.app host
- Payment failure via x402 protocol resulting in 402 response
- Synthesis quality may degrade for very broad or ambiguous topic queries
- arXiv API unavailability causing upstream failures

## How this service works

A research agent that searches arXiv for academic papers, synthesizes findings, and provides comprehensive reports on research topics.

## Output

A synthesized research report covering the requested topic, drawing from multiple arXiv papers, including key findings, themes, and formatted citations to the source articles.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "topic": {
   "type": "string",
   "description": "Research topic to search for on arXiv"
  },
  "filters": {
   "anyOf": [
    {
     "type": "object",
     "additionalProperties": true
    },
    {
     "type": "null"
    }
   ],
   "default": null,
   "description": "Optional filters (e.g., {'category': 'cs.AI', 'year': 2024})"
  },
  "max_results": {
   "anyOf": [
    {
     "type": "integer"
    },
    {
     "type": "null"
    }
   ],
   "default": 10,
   "description": "Maximum number of results to return (default: 10, max: 50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "report": "Recent arXiv papers focus on foundation models, retrieval, and alignment.",
  "articles": [
   {
    "link": "http://arxiv.org/abs/0000.00000",
    "title": "Example Paper",
    "authors": [
     "A. Researcher"
    ],
    "summary": "Example summary of the paper.",
    "arxiv_id": "0000.00000",
    "published": "2024-01-01"
   }
  ],
  "total_results": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-research-agent-search-synthesize-cd258a06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from arxiv-research-agent.up.railway.app](https://www.zero.xyz/host/arxiv-research-agent.up.railway.app/llms.txt)
