# Speer Cyber Defense - Intel Prices Spread Estimates

> Speer Cyber Defense - Intel Prices Spread Estimates 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).

Returns current spread estimate data for cybersecurity intelligence pricing on the Speer platform

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/intel/prices/spread-estimates
- 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-intel-prices-spread-estimates-e2459682
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SlFY7YM5JfyVB56mEyvGS

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-intel-prices-spread-estimates-e2459682
```

Example prompt: Can you pull the latest spread estimates for Speer Cyber Defense's intel pricing — show me up to 20 items so I can see how their cybersecurity API costs are currently ranging?

## When to prefer this

Use this endpoint when you need to programmatically discover or monitor the current price spread estimates for Speer Cyber Defense's cybersecurity intelligence services — particularly useful for cost forecasting, budget allocation for AI agent workflows, or pre-flight checks before making paid intel calls. Prefer this over manual inspection when automating decisions about which intel endpoints to invoke based on current pricing.

## Known failure modes

- Empty items array if no spread data is currently available
- HTTP 402 if USDC micropayment via x402 fails or wallet is unfunded
- HTTP 503 if the pricing backend is unavailable (not billed)
- Invalid limit parameter may return default result set or validation error
- Stale updatedAt timestamp if pricing feed has not refreshed recently

## 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, a list of spread estimate items (array), a status string, and an updatedAt ISO 8601 datetime indicating when the data was last refreshed. The items array contains current price spread data for Speer cybersecurity intel offerings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "example": 20
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "items": {
       "type": "array"
      },
      "status": {
       "type": "string"
      },
      "updatedAt": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "items": [],
  "status": "ok",
  "updatedAt": "2026-01-01T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/speer-cyber-defense-intel-prices-spread-estimates-e2459682/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)
