# Quartermaster TL;DR (Raw Text Summarizer)

> Quartermaster TL;DR (Raw Text Summarizer) is a paid API for AI agents from quartermaster.surewhynot.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Generates an AI-powered short, medium, or long summary of raw text passed directly as a query parameter.

## Facts

- Endpoint: GET https://quartermaster.surewhynot.app/v1/tldr
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quartermaster-tl-dr-raw-text-summarizer-109a3520
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rRLNSiYDZzykHazIn2kLw

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 quartermaster-tl-dr-raw-text-summarizer-109a3520
```

Example prompt: Give me a short TL;DR of this text: 'The Federal Reserve raised interest rates by 25 basis points today, citing persistent inflation concerns despite recent cooling in consumer prices. Officials signaled that further hikes remain possible depending on incoming data, though markets interpreted the statement as a dovish pivot...'

## When to prefer this

Use this endpoint when you have raw text content in hand (not a URL) and need an AI-generated summary at a controlled length. Choose this over the /v1/summarize sibling when the source is already extracted text rather than a URL to fetch. Ideal for summarizing pasted articles, documents, transcripts, or any block of text up to 16,000 characters.

## Known failure modes

- Text exceeds 16,000 character limit — request is rejected
- Missing required 'text' query parameter — returns 400 error
- Invalid 'length' enum value — may default to 'short' or return validation error
- Payment not provided or insufficient — x402 payment required at $0.005 USDC
- Empty string passed as text — may return empty or trivial summary
- AI model timeout or upstream failure — 5xx error returned

## How this service works

AI TL;DR of raw text passed in directly (not a URL): short, medium, or long. The text-in sibling of /v1/summarize.

## Output

An AI-generated summary of the provided text at the requested length (short, medium, or long), returned as a condensed textual digest capturing the key points.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "maxLength": 16000,
       "description": "Text to summarize"
      },
      "length": {
       "enum": [
        "short",
        "medium",
        "long"
       ],
       "type": "string",
       "default": "short",
       "description": "Summary length"
      }
     }
    }
   },
   "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/quartermaster-tl-dr-raw-text-summarizer-109a3520/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quartermaster.surewhynot.app](https://www.zero.xyz/host/quartermaster.surewhynot.app/llms.txt)
