# arXiv Research Agent – Fetch Newest Publications

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

Fetches and summarizes the newest arXiv publications for a specified research topic

## Facts

- Endpoint: POST https://arxiv-research-agent.up.railway.app/newest
- Price: $0.03/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-fetch-newest-publications-57ce2b49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0eZVoJ-Lt0MCrWY2fw6hZ

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-fetch-newest-publications-57ce2b49 -d '<json body>'
```

Example prompt: Can you pull the newest arXiv papers on diffusion models and give me a summary of what's been published most recently?

## When to prefer this

Choose this endpoint when you specifically need the *newest* or most recently submitted arXiv papers on a topic, rather than a broader search or synthesized report with citations. Ideal for staying current with fast-moving research fields where recency is paramount. Use the sibling search endpoint instead if you want a broader synthesized report with citations across time.

## Known failure modes

- Topic query too vague or broad, returning low-quality or unrelated results
- No recent papers found for a very niche or misspelled topic
- Service timeout if arXiv is slow to respond
- Rate limiting or payment failure if USDC payment of $0.03 is not processed correctly
- Unexpected arXiv downtime causing empty or error responses

## How this service works

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

## Output

A list of the newest arXiv papers matching the given topic, including titles, authors, abstracts or summaries, and links to the arXiv entries, synthesized into a readable overview of recent research activity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "n": {
   "type": "integer",
   "description": "Number of newest publications to fetch (max: 50)"
  },
  "topic": {
   "type": "string",
   "description": "Research topic to search for"
  },
  "days_back": {
   "anyOf": [
    {
     "type": "integer"
    },
    {
     "type": "null"
    }
   ],
   "default": 7,
   "description": "Number of days back to search (default: 7)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query_info": "Newest publications for 'machine learning' from the past 7 days.",
  "publications": [
   {
    "link": "http://arxiv.org/abs/0000.00001",
    "title": "Example Recent Paper",
    "authors": [
     "A. Researcher"
    ],
    "abstract": "Example abstract text.",
    "arxiv_id": "0000.00001",
    "published": "2024-01-02"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-research-agent-fetch-newest-publications-57ce2b49/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)
