$ man arxiv-summarize
/arxiv-summarize
NAME
arxiv-summarize — arxiv paper summarizer / research-paper tldr
SYNOPSIS
POST https://x402.agentutility.ai/arxiv-summarize
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
arXiv paper summarizer / research-paper TLDR. Fetches abstract via arXiv API + LLM-generated structured summary (TLDR, key findings, methods, limitations, so-what).
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| arxiv_id_or_url | string | — | required |
| include_abstract | boolean | — | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| arxiv_id | string | Canonical arXiv ID parsed from the input (e.g. 2301.12345). |
| arxiv_url | string | Canonical arXiv abstract page URL for the paper. |
| pdf_url | string | Direct URL to the paper's PDF on arxiv.org. |
| title | string | Paper title as registered on arXiv. |
| authors | array | Array of author names listed on the arXiv submission. |
| primary_category | string | Primary arXiv category code for the paper (e.g. cs.LG, hep-th). |
| categories | array | All arXiv category codes the paper is cross-listed under. |
| published | string | ISO 8601 timestamp of the paper's initial arXiv submission. |
| updated | string | ISO 8601 timestamp of the most recent arXiv revision. |
| doi | string | DOI associated with the paper, if registered on arXiv. |
| summary | object | Structured TLDR object with key_findings, methods, limitations, so_what, and keywords fields. |
| abstract | string | Raw abstract text fetched from the arXiv API. |
| abstract_chars | number | Character count of the raw abstract string. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/arxiv-summarize \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the arxiv-summarize tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- arxivresearchsummarizepapersscience
- env
- VENICE_API_KEY
- methods
- POST
- cluster
- webprobe
- price
- $0.04 USDC per call
ADJACENT — other endpoints in webprobe
| endpoint | description | price |
|---|---|---|
| answer-web | Answers natural-language questions with live web research, returning a synthesized answer with inline [N] citations and the source URLs. | $0.04 |
| rss-from-anything | RSS feed generator / HTML to RSS converter. | $0.04 |
| scrape | Scrape any webpage. | $0.04 |
| scrape-website | Scrapes any webpage and pulls title, description, canonical URL, OpenGraph + Twitter card metadata, headings, and outbound links from a s… | $0.04 |
| screenshot | Website screenshot / URL to PNG/JPG. | $0.04 |
| webpage-diff | Detects changes on a webpage: fetches a URL, strips HTML to plain text, computes a SHA-256 hash, and (when given a previous hash or text)… | $0.04 |
| website-screenshot | Captures a website screenshot from a URL as PNG or JPG. | $0.04 |
| arxiv-search | arXiv full-text search. | $0.03 |
SEE ALSO