# Speer Cyber Defense Security Feed

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

Retrieves a paginated feed of cybersecurity news, CVEs, and threat intelligence items via a pay-per-call USDC micropayment API

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/feed
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/speer-cyber-defense-security-feed-0728333b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dYpHOJMNwNvcsCzYn2LQM

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-security-feed-0728333b
```

Example prompt: Pull the latest 20 items from the Speer Cyber Defense security feed so I can review recent CVEs and cybersecurity news.

## When to prefer this

Choose this endpoint when an AI agent or automated pipeline needs a real-time or near-real-time stream of cybersecurity news, CVE disclosures, or threat intelligence items, especially when micropayment-based pay-per-call pricing on Base or Solana is acceptable. Prefer it over scraping security blogs when you need structured, machine-readable feed data with a clear freshness timestamp.

## Known failure modes

- HTTP 503 returned when security analysis or feed retrieval fails — not billed
- Empty items array if no recent feed entries are available
- Payment failure if USDC balance is insufficient (x402 protocol rejection)
- Invalid query parameters (e.g. non-numeric limit) may return a 400 error
- Network timeout if the upstream feed source is unavailable

## 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 a boolean 'ok' status field, an 'items' array containing cybersecurity feed entries (CVEs, threat news, advisories), a 'status' string, and an 'updatedAt' ISO 8601 timestamp indicating when the feed was last refreshed. Cost is $0.001 USDC per call; failed analyses return HTTP 503 and are not billed.

## 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-security-feed-0728333b/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)
