# Survival Colony x402 AI Summarization API

> Survival Colony x402 AI Summarization API is a paid API for AI agents from service.31-207-45-250.sslip.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Summarizes text into key points, action items, and takeaways — payable with USDC via x402 on Base at $0.001 per call.

## Facts

- Endpoint: POST https://service.31-207-45-250.sslip.io/v1/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/survival-colony-x402-ai-summarization-api-238cfc75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wi-4uBS5iNf3or8PnZQUi

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 survival-colony-x402-ai-summarization-api-238cfc75 -d '<json body>'
```

Example prompt: Can you summarize this meeting transcript into key takeaways and action items? Focus on decisions made and next steps: [paste transcript here]

## When to prefer this

Choose this endpoint when you need a low-cost, pay-per-call summarization API that accepts crypto micropayments via x402 on Base. Ideal for agents that process variable volumes of text without committing to a subscription, or for pipelines where per-call USDC billing is preferred over API keys. Best suited for text under 4,000 characters that needs structured output including summaries, action items, and takeaways in a single call.

## Known failure modes

- Text exceeds 4000 character limit — request rejected with validation error
- Empty or missing text field — returns error requiring minLength of 1
- Payment not included or insufficient USDC — x402 payment required response
- Malformed JSON body — returns 400 bad request
- Instruction exceeds 500 character limit — rejected with validation error

## How this service works

Low-cost AI analysis, extraction, summarization and risk-review APIs payable with USDC via x402 on Base.

## Output

Returns a JSON object containing a prose summary of the input text, a list of action items extracted from the content, and a list of key takeaways — all derived from the supplied text and optional instruction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 1
  },
  "instruction": {
   "type": "string",
   "maxLength": 500
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": "...",
  "action_items": [
   "..."
  ],
  "key_takeaways": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/survival-colony-x402-ai-summarization-api-238cfc75/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from service.31-207-45-250.sslip.io](https://www.zero.xyz/host/service.31-207-45-250.sslip.io/llms.txt)
