# AmanChain Token Risk Audit

> AmanChain Token Risk Audit is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.155518/call, status unknown (last checked 2026-09-15).

Performs a deterministic on-chain risk audit of any AMT-20 token using live consensus state, paid per call via x402 in USDC on Base.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-token-audit
- Price: $0.155518/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-token-risk-audit-d9d3e9d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NyMHCuENFbLlOuV4JpU1M

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 amanchain-token-risk-audit-d9d3e9d0 -d '<json body>'
```

Example prompt: Can you run a full on-chain risk audit of the AMT-20 token at address 0xAbC123... and tell me if there are any red flags like rug pull risks, suspicious pools, or liquidity issues?

## When to prefer this

Use this endpoint when you need a deterministic, node-executed risk audit of an AMT-20 token backed by live on-chain consensus state — not a heuristic or ML-based estimate. It is ideal for pre-trade screening, DeFi due diligence, or automated portfolio risk checks where accuracy against real block data matters. Prefer this over generic token scanners when operating within the AmanChain ecosystem and when paying per-call with USDC via x402 is acceptable.

## Known failure modes

- Invalid or non-existent token address returns an error or empty audit result
- Token not found on AmanChain returns a not-found error
- Payment failure via x402 prevents the call from executing
- Malformed JSON body with incorrect serviceId or missing request field causes a 400-level error
- Network or node unavailability may result in a timeout or 5xx error

## How this service works

Token Risk Audit: deterministic risk audit of any AMT-20 token Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-token-audit","request":"<input>"}. No account, no API key.

## Output

Returns a deterministic risk audit report for the specified AMT-20 token, derived from live AmanChain consensus state. Includes risk flags, pool analysis, balance anomalies, liquidity signals, and an overall risk assessment based on real block data.

## 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": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-token-audit\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-token-risk-audit-d9d3e9d0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
