# BriefSnap ELI5 — AI Document Simplifier

> BriefSnap ELI5 — AI Document Simplifier is a paid API for AI agents from briefsnap-x402.fly.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Accepts any document or text and returns an AI-generated simplified 'explain it like I'm 5' explanation, plus action items and a plain-language summary, billed at $1 USDC per call.

## Facts

- Endpoint: POST https://briefsnap-x402.fly.dev/api/eli5
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/briefsnap-eli5-ai-document-simplifier-8160e0c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fOoMjC9OId3bDAs-H0PW_

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 briefsnap-eli5-ai-document-simplifier-8160e0c5 -d '<json body>'
```

Example prompt: Can you give me an ELI5 explanation of this lease agreement and pull out any action items I need to deal with? Here's the text: [paste document text].

## When to prefer this

Choose this endpoint when a user needs a fast, pay-per-use simplification of any arbitrary text or document — especially when they want an ELI5 explanation, a plain-English summary, or structured action items extracted from dense material. It is particularly useful for one-off or infrequent document processing tasks where a subscription-based summarization service would be overkill, and when USDC micropayment capability is already available in the agent workflow.

## Known failure modes

- Missing or empty input body returns a validation error
- Payment failure or insufficient USDC balance results in a 402 Payment Required response
- Extremely long documents may exceed token limits, causing truncation or an error
- Malformed JSON body type mismatch (e.g. sending form-data when JSON expected) causes a 400 error
- Service downtime on the fly.dev host may return 503 or timeout

## How this service works

Pay USDC, get instant AI summaries, action item extraction, and simplified explanations of any document or text.

## Output

The agent receives an AI-generated simplified explanation of the submitted text (ELI5 format), a concise summary of main points, and a list of extracted action items — all returned in a single JSON response after the $1 USDC payment is processed.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/briefsnap-eli5-ai-document-simplifier-8160e0c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from briefsnap-x402.fly.dev](https://www.zero.xyz/host/briefsnap-x402.fly.dev/llms.txt)
