# Speer Cyber Defense Domain Report

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

Generates a composite cybersecurity report for a given domain, covering threat intelligence, reputation, and security posture analysis.

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/domain-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-domain-report-1356cd70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZSDvZRzcZubTDnwvWww4n

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-domain-report-1356cd70
```

Example prompt: Can you run a full security and threat intelligence report on the domain 'suspicioussite.xyz' and tell me if it's flagged for phishing, malware, or other risks?

## When to prefer this

Choose this endpoint when you need a composite, multi-signal cybersecurity report on a specific domain rather than point lookups. It is ideal for AI agents doing automated threat triage, vendor vetting, incident response, or phishing detection where a broad security overview is needed in a single pay-per-call request. Prefer this over basic WHOIS or DNS lookups when threat intelligence context and security posture analysis are the goal.

## Known failure modes

- HTTP 503 returned when security analysis fails (not billed)
- Invalid or malformed domain name returns an error
- Domain not found in threat intelligence databases may return limited results
- Rate limiting or payment failure may block the request
- Depth parameter set incorrectly may affect result completeness

## 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 ok status, tool name, analysis status, and a summary of the domain's security posture, which may include threat classifications, reputation scores, phishing/malware flags, and other composite cybersecurity findings for the queried domain.

## 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": [
      "domain"
     ],
     "properties": {
      "depth": {
       "type": "string",
       "example": "standard"
      },
      "domain": {
       "type": "string",
       "example": "example.com"
      }
     },
     "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-domain-report-1356cd70/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)
