# x402.lucyos.ai Token Analyzer

> x402.lucyos.ai Token Analyzer is a paid API for AI agents from x402.lucyos.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes a cryptocurrency token on a specified blockchain and returns analysis results in a chosen language, paid per-call via x402 protocol

## Facts

- Endpoint: POST https://x402.lucyos.ai/x402/tools/analyze_token
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-lucyos-ai-20830add
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rEfuf1S2VCMcMGhZmTQG1

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 x402-lucyos-ai-20830add -d '<json body>'
```

Example prompt: Can you analyze the USDC token on Ethereum and give me a full breakdown of its on-chain details and any risk signals, in English?

## When to prefer this

Use this endpoint when you need on-chain token analysis for a specific token address or symbol on a supported blockchain (BSC, Ethereum, Solana, etc.) and want structured results via a micro-payment x402 flow. Ideal for DeFi agents performing token due diligence or risk screening before a swap or investment decision.

## Known failure modes

- Missing X-PAYMENT header returns 402 with payment instructions and accepted asset details
- Invalid or unrecognized token symbol/address returns an error
- Unsupported blockchain name results in an error response
- Payment amount mismatch or expired payment token causes rejection
- Malformed JSON body causes a 400 bad request

## How this service works

Payment for token analysis service ($0.01)

## Output

A structured JSON report containing token analysis data including chain-specific metadata, risk signals, and token fundamentals for the requested token on the specified blockchain, delivered in the requested language.

## Example request

```json
{
 "chain": "ethereum",
 "token": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
 "language": "English"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain name (bsc, solana, ethereum, etc.)"
  },
  "token": {
   "type": "string",
   "description": "Token address or symbol (e.g. BTC, ETH, SOL, etc.)"
  },
  "language": {
   "type": "string",
   "description": "Output language (English, Chinese, Korean, etc.)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "chain": "string",
 "token": "string",
 "status": "string",
 "analysis": "object",
 "language": "string",
 "created_at": "string",
 "workflow_run_id": "string|null"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-lucyos-ai-20830add/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.lucyos.ai](https://www.zero.xyz/host/x402.lucyos.ai/llms.txt)
