Address Intelligence API
Pay-per-request blockchain address intelligence for AI agents and applications. Blacklist checks, address labels, AML risk scoring.
API Endpoints
/x402/checkCheck if a wallet address is blacklisted or sanctioned. Auto-detects network from address format.
address(string) โ Wallet address (0x... for eth, T... for trx){
"success": true,
"data": {
"address": "T...",
"network": "trx",
"isBanned": true,
"balance": "1,584,500.17"
}
}/x402/labelGet address labels and entity information โ exchange name, protocol, contract type, category, risk level.
chain(string) โ eth or trxaddress(string) โ Wallet address{
"success": true,
"data": {
"address": "0x...",
"network": "eth",
"labels": [{ "name": "Binance", "category": "exchange" }]
}
}/x402/aml-checkDeep AML risk analysis of a wallet address: risk score (0-100), risk level, fund sources, detailed breakdown.
address(string) โ Wallet address (0x... or T...). Network auto-detected{
"success": true,
"data": {
"riskScore": 72,
"riskLevel": "high",
"sources": { "byType": [{ "name": "Exchange", "share": 0.65 }] }
}
}/x402/aml-tx-checkAML risk analysis of a USDT/USDC transaction. Returns risk score, risk level, fund sources, sender and receiver addresses.
txHash(string) โ Transaction hash (0x... for ETH, hex for TRON)direction(number) โ 0=auto, 1=incoming, 2=outgoing (default: 0){
"success": true,
"data": {
"txHash": "0x...",
"network": "ethereum",
"riskScore": 65,
"riskLevel": "high",
"sources": { "byType": [{ "name": "Exchange", "share": 0.55 }] }
}
}How x402 Works
Discover
Fetch /.well-known/x402.json to get payment requirements and supported endpoints.
Pay
Send USDC on Base to the receiver address. Include the tx hash in the X-PAYMENT header.
Query
Call the API endpoint. Payment is verified on-chain. Response is returned instantly.
Quick Start
curl https://mcp.usdtbanlist.com/.well-known/x402.json
curl -X POST https://mcp.usdtbanlist.com/x402/check \
-H "Content-Type: application/json" \
-d '{"address":"TJVHRTVkAYcPSjTWEqtYNLbYkn536MMSsa"}'{
"mcpServers": {
"usdtbanlist": {
"url": "https://mcp.usdtbanlist.com/mcp"
}
}
}Try an endpoint
Select a service, chain, and address.
Powered by USDTBanList
Blacklist data from on-chain USDT/USDC contract events. AML scoring via ChainSentry intelligence.