# Speer Cyber Defense Text Summarization

> Speer Cyber Defense Text Summarization is a paid API for AI agents from api.speercyberdefense.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Summarizes a long block of text into a concise summary, billed at $0.002 USDC per call via x402 micropayment on Base or Solana

## Facts

- Endpoint: POST https://api.speercyberdefense.com/v1/summarize
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/speer-cyber-defense-text-summarization-4029c3b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fhec24_PbReQzi1Anlthw

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 speer-cyber-defense-text-summarization-4029c3b6 -d '<json body>'
```

Example prompt: Summarize this long cybersecurity incident report for me: 'On March 15, a threat actor exploited a known RCE vulnerability in Apache Struts affecting over 200 enterprise servers across three continents, exfiltrating customer PII and financial records before detection by the SOC team 72 hours later. Remediation involved patching 1,400 nodes and rotating all credentials...' — just give me the key takeaways.

## When to prefer this

Choose this endpoint when you need pay-per-call text summarization without a subscription, especially within a cybersecurity or threat intelligence workflow. It is ideal for AI agents that process variable volumes of long-form security content (reports, CVE advisories, news) and want to pay only for what they use via USDC micropayments on Base or Solana.

## Known failure modes

- HTTP 503 if summarization fails (not billed)
- HTTP 402 if payment is not provided or invalid (x402 micropayment required)
- Empty or missing 'text' field may result in an error response
- Extremely short input text may yield a trivial or unhelpful summary

## How this service works

Cybersecurity micropayments API for AI agents — pay-per-call USDC on Base and Solana (x402 v2). Free utility services under /v1/free/* and gateway select under /v1/gateway/* (Public). Paid cybersecurity analysis, CVE/security news feeds, Base blockchain intelligence, network intel utilities, composite domain/URL reports, research, conversion, verification, and feeds. Failed security analyses are not billed (HTTP 503).

## Output

Returns a JSON object with ok:true, status:'ok', and a 'summary' field containing the condensed version of the submitted text. Failed analyses return HTTP 503 and are not billed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "example": "long text to summarize"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "resource",
  "status": "ok",
  "summary": "Completed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/speer-cyber-defense-text-summarization-4029c3b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.speercyberdefense.com](https://www.zero.xyz/host/api.speercyberdefense.com/llms.txt)
