# GEDX402 BART Text Summarizer

> GEDX402 BART Text Summarizer is a paid API for AI agents from embed.gedx402.com, paid per call via x402, $0.013/call, status unknown (last checked 2026-09-13).

Summarizes long-form text using the BART model, paid per-call with USDC via x402 protocol — no API keys required

## Facts

- Endpoint: GET https://embed.gedx402.com/v1/summarize/bart
- Price: $0.013/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-bart-text-summarizer-13bf0283
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oI75bcmt1a7MTC5HvWEa2

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 gedx402-bart-text-summarizer-13bf0283
```

Example prompt: Use the BART summarizer to condense this 2000-word article into a summary no longer than 150 words: 'Artificial intelligence has been transforming industries at an unprecedented pace...'

## When to prefer this

Choose this endpoint when you need quick, no-registration text summarization powered by BART, paid micro-per-call with USDC across Base, Polygon, Arbitrum, World, or Solana — ideal for agents operating without pre-issued API keys in a crypto-native or x402 payment environment

## Known failure modes

- Payment failure: USDC balance insufficient or unsupported chain — endpoint returns 402 Payment Required
- Input text too long: may exceed model token limits, resulting in truncation or error
- Invalid max_length value: non-integer or negative value may cause a bad request error
- Empty or missing text field: returns an error or empty summary
- Network/inference timeout: Cloudflare Workers AI may timeout on very large inputs

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object containing a 'summary' field with a concise, condensed version of the input text, respecting the requested maximum length

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Long-form text to condense."
  },
  "max_length": {
   "type": "integer",
   "description": "Target maximum length of the summary."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": "Concise summary."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-bart-text-summarizer-13bf0283/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from embed.gedx402.com](https://www.zero.xyz/host/embed.gedx402.com/llms.txt)
