Summarize a PDF

$0.030 per call · USDC via x402 · POST /api/pdf-summarize

Fetch a PDF from a URL, extract its text, and return a concise AI-generated summary - factual, no information added beyond what's in the document. Send POST /api/pdf-summarize with the required field url and pay $0.030 per call over x402 or MPP (there is no free tier). It returns a JSON object with url, pages, wordCount, summary, summaryWordCount and 2 more.

Body: {"url":"https://…/file.pdf","maxWords":200?}. Uses the same OpenAI-compatible gateway as /v1/chat/completions internally; the model that actually served is disclosed in the response.

Category: Web & documents · Tags: pdf summarize summary documents ai text-extraction

TRY IN PLAYGROUND →

Parameters

NameTypeRequiredDescription
urlstringyesPublic http(s) URL of a PDF Also accepted as link, uri, href, page.
maxWordsnumbernoTarget summary length in words, 50-500 (default 200)

Example request

curl -i -X POST https://agent402.tools/api/pdf-summarize \
  -H "Content-Type: application/json" \
  -d '{"url":"https://bitcoin.org/bitcoin.pdf","maxWords":150}'

Without payment this returns HTTP 402 Payment Required with the exact price for pdf-summarize; any x402 v2 or MPP client pays it and retries.

Example response

{
  "url": "https://bitcoin.org/bitcoin.pdf",
  "pages": 9,
  "wordCount": 3604,
  "summary": "The paper proposes a peer-to-peer electronic cash system that lets online payments move directly between parties without a financial institution, using a proof-of-work chain as a timestamp server to prevent double-spending…",
  "summaryWordCount": 148,
  "model": "openai/gpt-4o-mini",
  "truncatedInput": false
}
FieldTypeAlways presentIn the example
urlstringyeshttps://bitcoin.org/bitcoin.pdf
pagesnumberyes9
wordCountnumberyes3604
summarystringyesThe paper proposes a peer-to-peer electronic cash system that lets online pay...
summaryWordCountnumberyes148
modelstringyesopenai/gpt-4o-mini
truncatedInputbooleanyesfalse

From an MCP client

catalog.call {
  "slug": "pdf-summarize",
  "params": {
    "url": "https://bitcoin.org/bitcoin.pdf",
    "maxWords": 150
  }
}

The hosted connector at https://agent402.tools/mcp needs a payment for pdf-summarize; the stdio package pays it from a wallet or from AGENT402_CREDITS_KEY. Local install: npx -y agent402-mcp.

Errors and behavior

Paid call (JavaScript agent)

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const client = new x402Client();
client.setSpendControls?.(false); // keep your own spending ceiling in code
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);

const res = await payFetch("https://agent402.tools/api/pdf-summarize", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "url": "https://bitcoin.org/bitcoin.pdf",
    "maxWords": 150
  }),
});

Part of these workflows

Summarize a PDF is one step in this skill pack, each sold as a single call:

Related tools

PDF to text

$0.01 · POST /api/pdf

Fetch a PDF from a URL and extract its text content. Returns page count, document info, and the full text (up to 20MB PD…

Images to PDF

$0.004 · POST /api/images-to-pdf

Combine PNG/JPEG images into a single PDF, one image per page. Body: {"urls":["https://…/1.png","https://…/2.jpg"]}. Ret…

Extract / split PDF pages

$0.003 · POST /api/pdf-extract-pages

Pull a subset of pages into a new PDF (split). Body: {"url":"https://…/file.pdf","pages":"1-3,5"}. Returns the new PDF a…

PDF info

$0.001 · POST /api/pdf-info

Inspect a PDF without downloading the whole thing into your model: page count, title, author, subject, creator, producer…

Merge PDFs

$0.004 · POST /api/pdf-merge

Combine several PDFs into one, in order. Body: {"urls":["https://…/a.pdf","https://…/b.pdf"]}. Returns the merged PDF as…

Rotate PDF

$0.003 · POST /api/pdf-rotate

Rotate pages by 90/180/270°. Body: {"url":"https://…/file.pdf","degrees":90,"pages":"1-3"?}. Omit "pages" to rotate all.…