# Speer Cyber Defense TLS Analysis

> Speer Cyber Defense TLS 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 the TLS/SSL configuration of a given hostname and returns a security assessment summary

## Facts

- Endpoint: GET https://api.speercyberdefense.com/v1/security/tls/analyze
- 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-tls-analysis-dd4c500b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ovpXQtG42YwZXNFePsFKm

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-tls-analysis-dd4c500b
```

Example prompt: Can you run a standard-depth TLS analysis on api.stripe.com and tell me if there are any security issues with its SSL configuration?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call TLS/SSL security assessment of a specific hostname without committing to a subscription. Ideal for AI agents performing automated security audits, due diligence checks, or compliance verification at scale. Particularly useful when you want failed analyses to not incur charges (HTTP 503 = no bill).

## Known failure modes

- HTTP 503 if the TLS analysis fails (e.g. unreachable host, handshake failure) — not billed
- Missing or invalid hostname parameter returns an error
- Payment failure via x402 if USDC balance is insufficient
- Timeouts on slow or unresponsive target hosts

## 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, the tool name used, a status string (e.g. 'ok'), and a plain-language summary of the TLS analysis findings for the given hostname. 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": [
      "hostname"
     ],
     "properties": {
      "depth": {
       "type": "string",
       "example": "standard"
      },
      "hostname": {
       "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-tls-analysis-dd4c500b/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)
