# Speer Cyber Defense URL Safety Check

> Speer Cyber Defense URL Safety Check is a paid API for AI agents from api.speercyberdefense.com, paid per call via x402, $0.003/call, status down (last checked 2026-09-15).

Analyzes a given URL for safety, detecting malicious, phishing, or otherwise dangerous web addresses

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/url-safety
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/speer-cyber-defense-url-safety-check-53b75813
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uU0YKb_DzXiKdp5YZkOaz

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-url-safety-check-53b75813
```

Example prompt: Can you check if this URL is safe to visit — https://suspicious-offer.xyz/free-prize — I got it in an email and I'm not sure if it's a phishing link?

## When to prefer this

Use this endpoint when an AI agent or user needs a quick, pay-per-use cybersecurity verdict on a specific URL — especially for flagging phishing attempts, malware distribution sites, or suspicious links encountered in emails, messages, or web content. Prefer this over general web-access tools when the goal is threat assessment rather than content retrieval.

## Known failure modes

- HTTP 503 returned if security analysis fails (not billed)
- Invalid or malformed URL input returns an error
- Unresolvable or non-existent domain may return uncertain status
- Rate limiting or payment failure may block the call

## 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 (boolean), tool name, status string, and a human-readable summary of the URL's safety assessment — whether it is safe, malicious, phishing, or otherwise flagged.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "example": "https://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-url-safety-check-53b75813/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)
