# Speer Cyber Defense - Fund Credits Conversion

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

Funds or converts credits for use with Speer Cyber Defense's pay-per-call cybersecurity micropayments API using USDC on Base or Solana

## Facts

- Endpoint: POST https://api.speercyberdefense.com/v1/convert/credits/fund
- Price: $0.005/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-fund-credits-conversion-e4f86d54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4GEIXn87Q03wV7XWsDk5w

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-fund-credits-conversion-e4f86d54 -d '<json body>'
```

Example prompt: Fund my Speer Cyber Defense API account by converting USDC credits so I can start running paid cybersecurity analyses — use a JSON body and POST the funding request now.

## When to prefer this

Use this endpoint when you need to fund or top up credits before making paid cybersecurity API calls on Speer Cyber Defense, particularly when operating an autonomous AI agent that needs a pre-funded balance to perform CVE lookups, domain/URL analysis, or threat intelligence without per-call manual payment approval. Prefer this over direct per-call x402 micropayments when you want to pre-allocate a budget for a session or batch of analyses.

## Known failure modes

- Invalid or malformed request body returns a 400 error
- Insufficient USDC balance or payment failure returns a payment error
- Network or blockchain confirmation delay may cause timeouts
- Duplicate or replayed payment transactions may be rejected
- Missing required fields (type, method, bodyType, body) returns validation error

## 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' (string identifying the resource), 'status' (string, e.g. 'ok'), and 'summary' (string describing the outcome, e.g. 'Completed'). A successful response confirms that credits have been funded or converted.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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-fund-credits-conversion-e4f86d54/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)
