# Speer Cyber Defense URL Trust Analysis

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

Analyzes a URL to assess its trustworthiness and security posture, returning a composite trust verdict

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/url-trust
- Price: $0.01/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-trust-analysis-b7749a5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uhoptdMNR3SkqJOE0aMJI

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-trust-analysis-b7749a5f
```

Example prompt: Can you check whether https://login-mybank-secure.com is trustworthy or potentially malicious — I got it in an email and want to know if it's safe before clicking?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call URL trust verdict without committing to a subscription — ideal for AI agents that encounter user-submitted or third-party URLs and need an on-demand security check. Prefer this over generic domain reputation APIs when you want cybersecurity-specific composite analysis with transparent per-call USDC pricing on Base or Solana.

## Known failure modes

- HTTP 503 if the analysis engine cannot process the URL (not billed)
- Missing required 'url' query parameter returns a validation error
- Invalid or malformed URL may result in an error or inconclusive result
- Payment failure (402) if USDC micropayment via x402 is not completed
- Network timeout if the target URL is unreachable during analysis

## 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 indicating success, a 'tool' field identifying the analysis tool used, a 'status' field (e.g. 'ok' or error state), and a 'summary' string describing the trust verdict and key findings about the URL. 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "example": "https://example.com"
      },
      "depth": {
       "type": "string",
       "example": "standard"
      }
     },
     "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-trust-analysis-b7749a5f/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)
