← oblique.markets · all endpoints

POST /api/v1/paid/summarize — $0.008 per call

Use when an agent needs summarize. Returns Summarize text as bullet points, a paragraph, or a single line — deterministic flash-model summarization with hard input/output caps. $0.008.

Price$0.008 per call (8000 atomic USDC, scheme exact)
Categoryai-tools
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/summarize

Try it

curl -i https://api.oblique.markets/api/v1/paid/summarize
# → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)

Input schema

{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to summarize; truncated to 8,000 characters"
  },
  "style": {
   "type": "string",
   "enum": [
    "bullets",
    "paragraph",
    "one-line"
   ],
   "default": "paragraph"
  }
 }
}

Example input

{
 "body": {
  "text": "string (required, truncated to 8000 chars)",
  "style": "string (optional: 'bullets' | 'paragraph' | 'one-line')"
 }
}

Example output

{
 "summary": "- Q3 revenue rose 18% to $4.2M on enterprise expansion\n- Monthly churn fell from 3.4% to 2.1%\n- Two enterprise renewals slipped into Q4, deferring ~$300k",
 "style": "bullets",
 "input_chars": 3480,
 "model": "inclusionai/ling-3.0-flash"
}

Clients

Worked TypeScript/Python clients and MCP configs: oblique-markets/oblique-examples · Agent Skills: oblique-markets/skills

Pay per call with x402 (USDC on Base or Solana) or MPP (pathUSD on Tempo). No accounts. Machine doors: /.well-known/x402.json · /openapi.json · /llms-full.txt · MCP · humans: remote.observer