# 402.com.tr AI Text Summarizer

> 402.com.tr AI Text Summarizer is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Accepts a block of text and returns a 3-5 bullet-point summary generated by Claude, with pay-per-call billing via x402.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/ai-summarize
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-ai-text-summarizer-bbbbd31b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R3K6tUpNDWuhltTbT-Bck

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 402-com-tr-ai-text-summarizer-bbbbd31b
```

Example prompt: Can you give me a 3-5 bullet summary of this article: 'Artificial intelligence is transforming healthcare by enabling faster diagnoses, reducing administrative burden, and personalizing treatment plans. Hospitals are adopting AI tools to analyze imaging data with greater accuracy than human radiologists in some cases. However, concerns about bias in training data and liability for AI-driven decisions remain significant hurdles to widespread adoption.'?

## When to prefer this

Use this endpoint when you need a quick, AI-generated bullet-point summary of arbitrary text without managing your own API keys or Claude subscriptions. It is ideal for agents that process occasional documents and want pay-per-use economics. Prefer this over embedding your own LLM call when you want zero credential management and micro-payment billing via x402.

## Known failure modes

- Missing 'text' query parameter returns a 400 error
- Text too long may be truncated or cause an error
- Payment failure (insufficient balance or x402 handshake issue) returns 402 Payment Required
- Claude API unavailability causes a 503 or timeout
- Empty or whitespace-only text may produce a low-quality or error response

## How this service works

Compress up to 16K characters of anything — articles, transcripts, email threads, reports — into 3-5 precise bullet points, one micro-payment per call. No API key, no subscription, no prompt engineering: send text=, get bullets back as clean JSON. The digest step for agent pipelines that read more than they can carry in context.

## Output

A short list of 3-5 bullet points capturing the key ideas of the submitted text, generated by Claude. The response is a concise, human-readable digest suitable for quick comprehension or further agent processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to summarize"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-ai-text-summarizer-bbbbd31b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
