# Speer Cyber Defense CVE Analysis

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

Analyzes a CVE identifier to produce a cybersecurity vulnerability summary, paid per-call via USDC micropayment on Base or Solana.

## Facts

- Endpoint: POST https://api.speercyberdefense.com/v1/security/cve-analysis
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/speer-cyber-defense-cve-analysis-8cdb08ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__xO5jdeqpR0Tqn-FmpFRZ

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-cve-analysis-8cdb08ae -d '<json body>'
```

Example prompt: Can you analyze CVE-2024-1234 and give me a summary of what it is, how severe it is, and what systems are affected?

## When to prefer this

Choose this endpoint when you need structured, on-demand CVE analysis at low cost ($0.01 per call) without a subscription, especially in agentic workflows where CVE lookups are sporadic. It is well-suited for AI agents that need to enrich security alerts, triage patches, or conduct vendor risk assessments programmatically. Prefer over free NVD API lookups when you need enriched summaries rather than raw NIST data.

## Known failure modes

- CVE not found or not yet in database — may return empty or incomplete summary
- Invalid CVE format — malformed CVE ID string returns an error
- HTTP 503 on analysis failure — no charge applied but no result returned
- Payment failure via x402 — call not processed if USDC micropayment cannot be completed
- Rate limiting or service unavailability

## 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 an 'ok' boolean, tool name, status field, and a 'summary' text containing the completed CVE analysis including vulnerability description, severity, affected systems, and remediation context. Failed analyses return HTTP 503 and are not billed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cve": {
   "type": "string",
   "example": "CVE-2024-1234"
  }
 }
}
```

## 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-cve-analysis-8cdb08ae/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)
