# shelf.thirdmade.net Text Summarizer

> shelf.thirdmade.net Text Summarizer is a paid API for AI agents from shelf.thirdmade.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Generates a 3-sentence extractive summary and top-5 keywords from any input text.

## Facts

- Endpoint: GET https://shelf.thirdmade.net/probe/summarize
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shelf-thirdmade-net-text-summarizer-0517fe50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1o5BrpufWzkEOM6SR50Q2

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 shelf-thirdmade-net-text-summarizer-0517fe50
```

Example prompt: Can you summarize this article and pull out the top keywords? Here's the text: 'Artificial intelligence is transforming industries worldwide. Companies are investing billions in machine learning research. The technology is reshaping how we work, communicate, and solve complex problems.'

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.001 USDC) extractive summary with keyword extraction in a single call. Ideal for text triage, content tagging, SEO analysis, or any workflow where you need to quickly understand large volumes of text without sending it to a heavier LLM. Best for plain text input where extractive (verbatim sentence) summaries are acceptable.

## Known failure modes

- Missing 'text' query parameter returns an error
- Empty or very short text may produce poor-quality summaries or fewer than 5 keywords
- Extremely long texts may be truncated or exceed processing limits
- Non-English text may yield degraded keyword and summary quality
- Payment failure (x402) results in 402 response and no output

## How this service works

Extractive summary (3 sentences) + top-5 keywords from any text.

## Output

Returns a 3-sentence extractive summary of the input text (sentences drawn directly from the source, not paraphrased) along with a list of the top 5 keywords or key phrases that best represent the content.

## 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",
       "description": "Input text"
      }
     }
    }
   },
   "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/shelf-thirdmade-net-text-summarizer-0517fe50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shelf.thirdmade.net](https://www.zero.xyz/host/shelf.thirdmade.net/llms.txt)
