# Speer Cyber Defense Package Security Report

> Speer Cyber Defense Package Security Report 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-14).

Fetches a composite security report for a software package in a given ecosystem, covering vulnerabilities and security posture

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/package-report
- Price: $0.01/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-package-security-report-51975d1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9mlHI8OXLf92o5s5liYUE

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-package-security-report-51975d1f
```

Example prompt: Can you pull a security report for the npm package 'express' version 4.18.2 and tell me if there are any known vulnerabilities or security issues?

## When to prefer this

Use this endpoint when you need a quick, composite security assessment of a specific software package (by name, ecosystem, and optionally version) via a pay-per-call micropayment model. Prefer it over manual CVE searches or self-hosted tools when you want a single API call that aggregates security intelligence for a given dependency, especially in agentic pipelines doing automated dependency review or supply chain risk checks.

## Known failure modes

- HTTP 503: security analysis failed — no charge applied, retry may succeed
- Missing required query parameters (ecosystem or package) return a 4xx error
- Unknown or unsupported ecosystem may yield no data or an error
- Invalid version string may produce no version-specific result
- Network timeout on upstream security data sources

## 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 indicating whether the analysis succeeded (ok boolean), the tool used, overall status, and a human-readable security summary for the specified package. 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",
     "required": [
      "ecosystem",
      "package"
     ],
     "properties": {
      "depth": {
       "type": "string",
       "example": "standard"
      },
      "package": {
       "type": "string",
       "example": "express"
      },
      "version": {
       "type": "string",
       "example": "4.18.2"
      },
      "ecosystem": {
       "type": "string",
       "example": "npm"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## 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-package-security-report-51975d1f/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)
