# Amori x402 Token Security Check

> Amori x402 Token Security Check is a paid API for AI agents from api.amori402.xyz, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Analyzes a token contract address for security risks, scam indicators, and on-chain safety signals across EVM chains and Solana

## Facts

- Endpoint: POST https://api.amori402.xyz/api/v1/security/check-token
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amori-x402-token-security-check-fe550b63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gKHa33t_w6h_axEly9xJl

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 amori-x402-token-security-check-fe550b63 -d '<json body>'
```

Example prompt: Can you check if this token contract is safe — the address is 0x4fabb145d64652a948d72533023f6e7a623c7c53 on Ethereum?

## When to prefer this

Use this endpoint when you need automated, per-token security screening before executing a trade, recommending a token, or onboarding a new asset — especially across EVM chains (Ethereum, BSC, Polygon, Base, Arbitrum) and Solana. Prefer this over generic block explorers when you need a structured risk/safety signal that an AI agent can act on programmatically.

## Known failure modes

- Invalid or malformed contract address returns an error response
- Unsupported chain ID results in failure or empty data
- Unrecognized token address on the specified chain may return limited data
- Payment failure via x402 protocol prevents the call from completing
- Network timeout if the on-chain data provider is slow

## How this service works

On-chain intelligence API for AI Agents. Token security, wallet reputation, phishing detection, trending pairs, Pump.fun data, and wallet balances across EVM and Solana. Powered by x402 protocol.

## Output

Returns a JSON object with a success flag and a data object containing security analysis results for the token, including risk indicators, scam signals, and safety assessments relevant to the queried chain and contract address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string",
   "description": "EVM token contract address (0x + 40 hex chars). Solana: base58 mint address."
  },
  "chain_id": {
   "enum": [
    "ethereum",
    "eth",
    "bsc",
    "bnb",
    "polygon",
    "matic",
    "base",
    "arbitrum",
    "arb",
    "solana",
    "sol",
    "1",
    "56",
    "137",
    "8453",
    "42161",
    "solana"
   ],
   "type": "string",
   "description": "Chain name or ID. Default: base (8453). Names: ethereum, eth, bsc, bnb, polygon, matic, base, arbitrum, arb, solana, sol. IDs: 1, 56, 137, 8453, 42161, solana."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amori-x402-token-security-check-fe550b63/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.amori402.xyz](https://www.zero.xyz/host/api.amori402.xyz/llms.txt)
