Skill: Document brief
POST /api/skill/document-briefMetadata, an AI-written summary, and a preview of the opening pages of a PDF - understand what a document says without reading the whole thing. Send POST /api/skill/document-brief with the required field url and pay $0.031 per call over x402 or MPP (there is no free tier). It returns a JSON object with pack, args, steps and summary.
The catalog's first AI-summarization pack, complementary to document-intel's deterministic format extraction (no AI, no summarization there). Document brief skill pack: one x402 payment runs 3 underlying tools (pdf-info, pdf-summarize, pdf-extract-pages); partial-success per step.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | PDF URL to summarize (e.g. https://example.com/report.pdf) Also accepted as link, uri, href, page. |
Example request
curl -i -X POST https://agent402.tools/api/skill/document-brief \
-H "Content-Type: application/json" \
-d '{"url":"https://bitcoin.org/bitcoin.pdf"}'
Without payment this returns HTTP 402 Payment Required with the exact price for skill-document-brief; any x402 v2 or MPP client pays it and retries.
Example response
{
"pack": "document-brief",
"args": {
"url": "https://bitcoin.org/bitcoin.pdf"
},
"steps": [
{
"slug": "pdf-info",
"ok": true,
"result": {}
},
{
"slug": "pdf-summarize",
"ok": true,
"result": {}
},
{
"slug": "pdf-extract-pages",
"ok": true,
"result": {}
}
],
"summary": "3/3 steps succeeded"
}
| Field | Type | Always present | In the example |
|---|---|---|---|
pack | string | yes | document-brief |
args | object | yes | 1 field: url |
steps | array of objects | yes | 3 items in the example |
summary | string | yes | 3/3 steps succeeded |
From an MCP client
catalog.call {
"slug": "skill-document-brief",
"params": {
"url": "https://bitcoin.org/bitcoin.pdf"
}
}
The hosted connector at https://agent402.tools/mcp needs a payment for skill-document-brief; the stdio package pays it from a wallet or from AGENT402_CREDITS_KEY. Local install: npx -y agent402-mcp.
Errors and behavior
- Arguments left out fall back to the pack's own defaults. Each step reports on its own; the call succeeds when at least one step does, and a run where every step fails is refused (400 when the input caused it, 502 otherwise).
- A paid call that ends in any status of 400 or above is not charged: settlement is cancelled when the tool fails.
- Wallet-only: this tool reaches the network or stored state, so it has no proof-of-work tier. A prepaid card-credits key (
Authorization: Bearer a402_...) also pays it. - A
GETorHEADto /api/skill/document-brief returns the same 402 quote, so the price can be read without a body. - An
Idempotency-Keyheader makes a retried paid call replay the first 200 instead of charging again.
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/skill/document-brief", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"url": "https://bitcoin.org/bitcoin.pdf"
}),
});
Related tools
Skill: Convert anything to markdown
POST /api/skill/any-to-markdownConvert anything at a URL - HTML, PDF, or an image - to clean markdown. The 'I have a URL but it might be any content-ty…
Skill: API health check
POST /api/skill/api-healthIs this API endpoint healthy? Liveness check, response headers, and TLS certificate status in one pass. API health check…
Skill: API investigation
POST /api/skill/api-investigationPoint at an unknown API endpoint and figure out how to use it: auth scheme, content type, version, rate limits, OpenAPI/…
Skill: Article digest
POST /api/skill/article-digestQuick research brief on any topic - web search results plus an AI-generated answer in one pass. Article digest skill pac…
Skill: Brand protection
POST /api/skill/brand-protectionIs this domain legitimate? WHOIS age, DNS resolution, scam/phishing search results, and HTTP headers for a quick trust a…
Skill: Cheapest rail right now
POST /api/skill/cheapest-railWhere should an agent transact this minute? Live gas on Ethereum + every major L2 side by side, Base gas tiers, a fee es…