# Speer Cyber Defense Claim Verification

> Speer Cyber Defense Claim Verification 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).

Verifies cybersecurity-related claims against provided sources, returning a summary of whether the claim checks out

## Facts

- Endpoint: POST https://api.speercyberdefense.com/v1/verify
- 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-claim-verification-fb8817e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HFzy-Nx24a5oGWOTI0Eyt

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-claim-verification-fb8817e1 -d '<json body>'
```

Example prompt: Can you verify this security claim — 'Log4Shell affects all Java applications running Log4j 2.x' — against these two sources: https://nvd.nist.gov/vuln/detail/CVE-2021-44228 and https://logging.apache.org/log4j/2.x/security.html?

## When to prefer this

Choose this endpoint when you need to fact-check or validate a specific cybersecurity claim against one or more cited sources, especially when the claim relates to CVEs, threat actors, vulnerabilities, or security advisories. It is pay-per-call ($0.002 USDC) so cost is negligible, and failed analyses are not charged, making it safe for exploratory verification tasks. Prefer it over general web search when you need a structured, summarized verdict on claim accuracy grounded in specific reference URLs.

## Known failure modes

- HTTP 503 returned when security analysis fails (not billed)
- Invalid or unreachable source URLs may degrade verification quality
- Vague or ambiguous claim text may produce inconclusive summaries
- Payment failure via x402 protocol blocks access
- Empty or missing 'text' field causes request rejection

## 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 indicating success, a 'status' field (e.g. 'ok'), a 'tool' identifier, and a 'summary' string describing the verification outcome. Failed analyses return HTTP 503 and are not billed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "example": "claim to verify"
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "example": [
    "https://example.com"
   ]
  }
 }
}
```

## 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-claim-verification-fb8817e1/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)
