https://api.cdp.coinbase.com/platform/v2/x402).
Discovery: /.well-known/x402 |
agent.json |
OpenAPI spec |
llms.txt
Unified DeFi counterparty due diligence in a single API call. Bundles four data sources: OFAC SDN screening, UK FCDO and UN Security Council sanctions checks, wallet age (days since first on-chain transaction on Ethereum mainnet), and wallet label hits (mixer, exploit, exchange hot wallet, bridge, MEV bot).
Returns a single machine-readable verdict: PASS, WARN, or BLOCK. The verdict includes a structured breakdown of each contributing signal, making it suitable for use in agent decision logic without additional parsing. EVM addresses only in the current version.
BLOCK is returned when the address appears on any sanctions list. WARN is returned for wallets with mixer/exploit labels, wallets under 7 days old, or wallets with fewer than 5 outbound transactions (possible new/throw-away address). PASS indicates no flags across all four checks.
This endpoint is designed for AI agents. Typical callers include:
{
"address": "0xe592427a0aece92de3edee1f18e0157c05861564",
"verdict": "PASS", // PASS | WARN | BLOCK
"verdict_reasons": [], // empty array on PASS
"sanctions": {
"hit": false,
"checked_lists": ["OFAC SDN"]
},
"wallet": {
"first_seen": "2021-05-04", // date of first Ethereum mainnet tx
"age_days": 1822,
"outbound_tx_count": 247,
"activity": "established" // established | new | minimal
},
"labels": [], // e.g. ["mixer", "exploit", "exchange_hot_wallet"]
"checked_at": "2026-04-30T12:00:00Z",
"disclaimer": "..."
}
GET https://globalapi.dev/compliance/counterparty/0xe592427a0aece92de3edee1f18e0157c05861564 — $0.01 USDC via x402
payment-required header containing base64-encoded payment instructionspayment-signature headerCompatible client libraries: @x402/client (TypeScript), x402-python (Python).