Sanctions-check a TRON address via x402 micropayment for $0.01 per query.
What it does
This endpoint performs a sanctions check against a given TRON wallet or contract address. It is operated by Erudite Intelligence LLC and exposed as an x402-payable resource at `https://bridge.eruditepay.com/v1/tron/address/sanctions-check`. The endpoint accepts a POST request with a JSON body containing an `address` field and returns a JSON object indicating whether the address appears on any sanctions list.
Payment is required per call via the x402 protocol (version 2). Two payment options are advertised: USDC on Base (eip155:8453) at 10,000 base units ($0.01, since USDC uses 6 decimals), or USDT on TRON (tron:728126428) at 10,000 base units ($0.01). The facilitator for the Base/USDC option is Coinbase CDP; the TRON/USDT option is handled directly by the provider. Maximum payment timeout is 300 seconds for both.
The endpoint is live and returns a proper 402 challenge. However, documentation is sparse — the provider's `/docs` path returns a 404, and the only output example provided is a generic `{"success": true, "data": {}}` stub. There is no detailed description of what fields appear in `data` when an address is sanctioned versus clean, nor any information about which sanctions lists are checked (e.g., OFAC SDN, EU, UN). The provider is described as a FinCEN MSB registrant (BSA ID 31000324258137) and operates a broader x402 payment facilitator bridge supporting 20 blockchains.
Capabilities
Use cases
- —Screen TRON addresses against sanctions lists before processing transactions
- —Automate compliance checks in a crypto payment pipeline
- —Integrate sanctions screening into a DeFi protocol's onboarding flow
- —Agent-driven compliance verification for TRON-based wallets
Fit
Best for
- —Developers needing per-call sanctions screening without monthly subscriptions
- —Crypto compliance workflows that require TRON-specific address checks
- —AI agents performing automated KYC/AML screening on blockchain addresses
Not for
- —Bulk batch screening of millions of addresses (per-call pricing may be costly at scale)
- —Sanctions screening for non-TRON blockchains (this endpoint is TRON-specific; other chain endpoints may exist separately)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/address/sanctions-check \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live with a valid x402 challenge and a basic input/output schema, but documentation is effectively absent — /docs returns 404, the output example is a stub with no field descriptions, and there is no information about which sanctions lists are checked or what a positive hit looks like.
Warnings
- —No documentation available — /docs, /api, /pricing, /README all return 404
- —Output schema is a generic stub; unclear what fields appear in 'data' for sanctioned vs. clean addresses
- —No information on which sanctions lists are checked (OFAC, EU, UN, etc.)
- —Regulated category (sanctions/compliance) — verify provider's claims independently
- —Provider claims FinCEN MSB registration (BSA ID 31000324258137) but this should be independently verified
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base at 10000 base units and USDT on TRON at 10000 base unitshttps://bridge.eruditepay.com/v1/tron/address/sanctions-check
- —Provider is Erudite Intelligence LLC, claims FinCEN MSB registration with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —The resource description in the x402 challenge is 'Crypto data intelligence'https://bridge.eruditepay.com/v1/tron/address/sanctions-check