Product + API docs

Ilyon AI Documentation

Ilyon AI is a multi-chain DeFi intelligence platform for token analysis, approval scanning, contract review, DeFi research, and chat-assisted investigation.

Supported chains

Token analysis and discovery cover Solana plus major EVM networks. Contract scanning and approval management are EVM-focused. Chat can orchestrate these tools, but it never executes transactions.

SolanaEthereumBaseArbitrumBSCPolygonOptimismAvalanche

Safety model

- Read-only analysis only; no wallet transactions are executed by the AI.

- Approval revokes are prepared as unsigned transactions for the user to review.

- AI verdicts are advisory and should be paired with your own due diligence.

Token analysis

Analyze a token address, review market/security data, inspect holder concentration, and read the AI verdict.

POST /api/v1/analyze
GET /api/v1/token/{address}?chain={chain}
POST /api/v1/token/{address}/refresh?chain={chain}

Security operations

Scan EVM contracts, review wallet approvals, and prepare revoke transactions without executing them.

POST /api/v1/contract/scan
GET /api/v1/shield/{wallet}
POST /api/v1/shield/revoke

DeFi intelligence

Discover opportunities, inspect protocol due diligence, compare markets, and simulate stress across supported ecosystems.

GET /api/v1/defi/opportunities
GET /api/v2/defi/compare
GET /api/v2/defi/protocols/{slug}
POST /api/v2/defi/simulate/lending

AI chat

Use the chat agent to analyze tokens, contracts, wallets, audits, and DeFi opportunities from one interface.

POST /api/v1/chat
GET /api/v1/chat/session
GET /api/v1/chat/session/{session_id}

Key endpoints

POST/api/v1/analyze

Creates or refreshes a full token analysis response.

{
  "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "chain": "ethereum",
  "mode": "standard"
}
GET/api/v1/search?query=usdc&chain=base

Searches DexScreener-backed token results and returns chain-aware links.

POST/api/v1/contract/scan

Runs EVM contract analysis and returns normalized vulnerabilities, risk score, and AI findings.

{
  "address": "0x1f98431c8aD98523631AE4a59f267346ea31F984",
  "chain": "ethereum"
}
GET/api/v2/defi/compare?asset=USDC&chain=base

Compares the same asset path across protocols using safety, yield quality, exit quality, and confidence.

POST/api/v2/defi/simulate/lending

Runs lending stress simulation over collateral drawdown, rate spikes, and reserve stress.

{
  "collateral_usd": 10000,
  "debt_usd": 5000,
  "utilization_pct": 72,
  "collateral_drop_pct": 20
}
GET/api/v1/docs

Returns machine-readable API docs and example workflows.

Common UI paths

/token/[address]?chain=...
Deep token analysis with security, market, holder, website, and AI sections.
/contract
Manual EVM contract scanning and AI-assisted code risk review.
/shield
Wallet approval scanner with revoke preparation across supported EVM chains.
/defi
DeFi discover hub for ranked opportunities, protocol spotlights, and AI market context.
/defi/compare
Protocol-vs-protocol comparison for the same asset and chain surface.
/defi/lending
Lending market browser plus health, LP, and stress simulation tools.
/audits
Protocol audit database for reviewing third-party audit records.
/chat
Conversational interface for the same backend intelligence tools.

Need the raw contract?

The backend also exposes machine-readable docs at /api/v1/docs for integrations and SDK work.