# anchor-x402 TL;DR Summarizer

> anchor-x402 TL;DR Summarizer is a paid API for AI agents from api.anchor-x402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Summarizes a URL or pasted text into 3-5 concise bullet points for $0.01 USDC per call

## Facts

- Endpoint: POST https://api.anchor-x402.com/v1/tldr
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-anchor-x402-com-cc2534b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gomDE5yrj8ItFckUKfpfj

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 api-anchor-x402-com-cc2534b3 -d '<json body>'
```

Example prompt: Give me a 3-5 bullet TL;DR of this article: https://en.wikipedia.org/wiki/Artificial_intelligence — just the key points, nothing else.

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.01 USDC) bullet-point summary of any web URL or block of text, especially when you want structured key-point extraction rather than a flowing prose summary. Ideal for agents that need to quickly digest long articles, Wikipedia pages, or pasted documents without reading the full content.

## Known failure modes

- URL is unreachable or returns non-200 — likely 422 or 500 error
- Text input is too short or empty — may return error or trivial bullets
- URL points to non-text content (PDF, image, video) — may fail to parse
- Payment not included or invalid x402 header — 402 Payment Required
- Source page behind authentication or paywall — content not accessible

## How this service works

Summarize a URL or pasted text into 3-5 concise bullets. $0.01 USDC.

## Output

Returns a JSON object containing the number of source characters processed and an array of 3-5 concise English summary bullets capturing the most important points from the source content.

## Example request

```json
{
 "url": "https://en.wikipedia.org/wiki/Machine_learning",
 "text": null
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "text": {
       "type": "string",
       "description": "Pasted text to summarize. Provide either `text` or `url`."
      },
      "url": {
       "type": "string",
       "description": "URL to fetch and summarize. Provide either `text` or `url`."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source_chars": 1170,
  "summary_bullets": [
   "Example domain is reserved by IANA for documentation use.",
   "It is safe to use in literature without coordination or permission.",
   "More info available at iana.org."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-anchor-x402-com-cc2534b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.anchor-x402.com](https://www.zero.xyz/host/api.anchor-x402.com/llms.txt)
