# Speer Cyber Defense Batch Quote Conversion

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

Converts a batch of cybersecurity quote IDs into finalized results or actionable output in a single paid API call

## Facts

- Endpoint: POST https://api.speercyberdefense.com/v1/convert/batch
- 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/speer-cyber-defense-batch-quote-conversion-8ae268e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0kzfAmjn3HTsKlet__iqO

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-batch-quote-conversion-8ae268e8 -d '<json body>'
```

Example prompt: I have a list of quote IDs from our security analysis session — q1, q2, and q3 — can you batch convert all of them at once using Speer Cyber Defense so I get the resolved results back in one shot?

## When to prefer this

Use this endpoint when you have multiple quote IDs from prior Speer Cyber Defense interactions that need to be resolved or converted in a single efficient call, rather than making individual conversion requests per quote. Ideal for pipelines that accumulate quote references before finalizing.

## Known failure modes

- Invalid or unrecognized quote IDs return an error response
- Empty quoteIds array may return a validation error
- HTTP 503 indicates a failed analysis — not billed
- Malformed request body (non-array quoteIds) causes a 400 error
- Network timeouts if batch is excessively large

## 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

A JSON object with ok status, tool name, a status field indicating completion, and a summary string confirming the batch was processed. Returns resolved data for each submitted quote ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "quoteIds": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "example": [
    "q1",
    "q2"
   ]
  }
 }
}
```

## 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-batch-quote-conversion-8ae268e8/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)
