# arXiv Academic Paper Search via agenttoll.dev

> arXiv Academic Paper Search via agenttoll.dev is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Search arXiv academic papers by query and category, returning structured results for research discovery

## Facts

- Endpoint: POST https://agenttoll.dev/paid/academic/arxiv
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arxiv-academic-paper-search-via-agenttoll-dev-c9dc9f57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LUBk0m08lzVGOuRduKgnO

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-via-agenttoll-dev-c9dc9f57 -d '<json body>'
```

Example prompt: Search arXiv for up to 10 papers on transformer-based language models in the cs.CL category and give me a summary of what you find.

## When to prefer this

Choose this endpoint when an AI agent needs structured, paginated academic paper search results from arXiv without building a direct arXiv API integration. Ideal for agents operating on pay-per-call micropayment economics (x402/USDC) who need academic literature discovery alongside other data tools like SEC filings or OSINT on the same platform. Prefer this over free arXiv API wrappers when operating within an agenttoll.dev tool suite or when per-call billing is acceptable.

## Known failure modes

- Empty results if query matches no papers or category is misspelled
- API timeout or upstream arXiv downtime returning a failed success flag
- Invalid category string causing zero results or error
- Limit parameter ignored or capped if too high
- Payment failure via x402 protocol preventing access

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object with a data array of paper records (titles, authors, abstracts, IDs, links), a meta object with result count, source, and generation timestamp, a cached boolean indicating whether results are cached, and a success boolean.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "query": {
   "type": "string"
  },
  "category": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-academic-paper-search-via-agenttoll-dev-c9dc9f57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
