# Oblique Markets Text Summarizer

> Oblique Markets Text Summarizer is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Summarizes input text as bullet points, a paragraph, or a single line using a deterministic flash model with hard input/output caps

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/summarize
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-text-summarizer-9b086721
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j6DBSReJZt69wcoeJwbCZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oblique-markets-text-summarizer-9b086721 -d '<json body>'
```

Example prompt: Summarize the following article as bullet points — keep it concise and factual: [paste article text here].

## When to prefer this

Choose this endpoint when you need fast, deterministic text summarization with a predictable output format (bullets, paragraph, or one-liner) and hard length guarantees. Prefer it over general-purpose LLM calls when repeatability and cost-predictability matter, or when you're operating in a pipeline that requires structured summarization at scale for a fixed per-call fee.

## Known failure modes

- Input text exceeds hard input cap — returns error indicating text is too long
- Invalid or missing format parameter — returns validation error
- Empty or blank input text — returns error or empty summary
- Payment not received or invalid x402 payment header — returns 402 Payment Required
- Model timeout if input is near the cap boundary — may return partial or error response

## How this service works

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.

## Output

Returns a condensed version of the submitted text in the requested format: a bullet-point list, a prose paragraph, or a single sentence. Output is deterministic for the same input and format combination, subject to hard token caps on both input and output.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "inclusionai/ling-3.0-flash",
  "style": "bullets",
  "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",
  "input_chars": 3480
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-text-summarizer-9b086721/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
