# Crucible Token Security Audit

> Crucible Token Security Audit is a paid API for AI agents from crucible.unitynodes.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Audits an ERC-20 token contract address on Ethereum mainnet for security risks, returning risk scores, flags, verification status, and cited evidence.

## Facts

- Endpoint: POST https://crucible.unitynodes.com/audit/token
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crucible-token-security-audit-2e565e2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2E3zWufT9G2j46vNxDJ20

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 crucible-token-security-audit-2e565e2b -d '<json body>'
```

Example prompt: Can you run a security audit on this Ethereum token contract — 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 — and tell me if it's verified, any risk flags, and the overall risk score?

## When to prefer this

Choose this endpoint when you need a structured, evidence-backed security audit of a specific ERC-20 token on Ethereum mainnet, especially when you need cited sources and a machine-readable risk score for automated decision-making. Prefer it over generic blockchain explorers when you need actionable security flags and confidence scores rather than raw contract data.

## Known failure modes

- Invalid or non-Ethereum contract address returns an error or empty result
- Non-mainnet addresses (e.g. testnets) may not be supported
- Newly deployed contracts may have insufficient data for confident scoring
- Payment failure via x402 protocol blocks the call
- Token with no on-chain activity may return low-confidence results

## How this service works

Pay-per-call Web3 agent services: wallet, token and agent security audits; token prices, depeg checks and portfolio valuation; cited fact-checking and source research.

## Output

Returns a structured security report including: a numeric risk score (0–1), confidence score, array of security flags (e.g. honeypot, unverified, mintable), token type, contract verification status, cited evidence claims with source URLs and content hashes for auditability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "token": {
   "type": "string",
   "description": "Token contract address (0x...), Ethereum mainnet"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cost": {
   "type": "number"
  },
  "data": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "flags": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "token": {
     "type": "string"
    },
    "verified": {
     "type": "boolean"
    }
   }
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "hash": {
      "type": "string"
     },
     "name": {
      "type": "string"
     }
    }
   }
  },
  "evidence": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "claim": {
      "type": "string"
     },
     "support": {
      "type": "string"
     },
     "sourceIndex": {
      "type": "number"
     }
    }
   }
  },
  "riskScore": {
   "type": "number"
  },
  "confidence": {
   "type": "number"
  },
  "contentHash": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crucible-token-security-audit-2e565e2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crucible.unitynodes.com](https://www.zero.xyz/host/crucible.unitynodes.com/llms.txt)
