$ man summarize
/summarize(1)
NAME
summarize — ai summarizer / tldr generator
SYNOPSIS
POST https://x402.org/v1/summarize
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
AI summarizer / TLDR generator. Compress long text into tldr / bullets / paragraph / executive-summary. 30k char input. Mistral-powered.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| text | string | Text to summarize. Max 30,000 chars. | required |
| style | string | 'tldr' (default), 'bullets', 'paragraph', or 'executive'. | optional |
| max_words | number | Optional target length in words (1-1000). | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| summary | string | Compressed version of the input text in the requested style (tldr, bullets, paragraph, or executive-summary). |
| style | string | Summary style applied to the output: tldr, bullets, paragraph, or executive-summary. |
| input_chars | number | Character count of the source text submitted for summarization. |
| output_chars | number | Character count of the generated summary. |
| model | string | Mistral model identifier that produced the summary. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.org/v1/summarize \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# install once claude mcp add x402 --command "npx x402-deployer-mcp" # then ask Claude Code: # "use the summarize tool to ..."
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- summarizetldrexecutive-summaryaillm
- env
- VENICE_API_KEY
- methods
- POST
- cluster
- wordmint
- price
- $0.01 USDC per call
ADJACENT — other endpoints in wordmint
| endpoint | description | price |
|---|---|---|
| ai-to-human-text | AI text humanizer / GPT detector bypass. | $0.01 |
| citation-verify | Citation verifier / fact-check against URL / does-this-source-support-this-claim / hallucination detector. | $0.01 |
| commit-message-from-diff | Git commit message generator / Conventional Commits / AI commit-msg. | $0.01 |
| humanize | AI text humanizer / GPT detector bypass. | $0.01 |
| regex-from-prompt | Regex generator / NL to regex / pattern builder. | $0.01 |
| sentiment | Sentiment + emotion analyzer. | $0.01 |
| sentiment-analysis | Sentiment analyzer / emotion classifier / aspect-based sentiment. | $0.01 |
| structured-extract | Structured-data extractor / JSON-from-text / schema-guided extraction / key-value pull / form-filler. | $0.01 |
SEE ALSO