$ man summarize-text
/summarize-text
NAME
summarize-text — ai text summarizer / tldr generator
SYNOPSIS
POST https://x402.agentutility.ai/summarize-text
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
AI text summarizer / TLDR generator. 4 styles: tldr (1-2 sentences), bullets (3-7 points), paragraph, executive (headline + bullets + recommendation). 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'. enum: tldr · bullets · paragraph · executive | optional |
| max_words | number | Optional target length in words (1-1000). | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| summary | string | Generated summary text in the requested style (tldr, bullets, paragraph, or executive format). |
| style | string | Summary style used: tldr, bullets, paragraph, or executive. |
| 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.agentutility.ai/summarize-text \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# MCP packages on npm under # @agentutility/mcp-* (one per cluster) # # Catalog + install: # https://mcp.agentutility.ai # # Or call summarize-text directly over HTTP — see above.
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 |
| pr-description-from-diff | Pull Request description generator / PR body from unified diff / AI PR description / GitHub PR body / GitLab MR description / generate-pr… | $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 |
SEE ALSO