Infrastructure optimized for growth
100+
Networks Supported
25ms
Avg Processing Time
25,000+ rq/s
Enterprise-ready
100+ TB
of Big Data
Access to full transaction data on all transactions & addresses
Broadcast and verify transactions with real-time monitoring
Retrieve blockchain data, balances, and transactions
Detailed blockchain history and transaction data for any address.
Full smart contracts metadata, including token symbols & token names
Dedicated nodes infrastructure for leading blockchains using JSON-RPC
Address validation, encoding & cryptographic tasks optimizations
Shared node infrastructure for top blockchains using JSON-RPC.
Pay for HTTP APIs, or charge for your own, in USDC stablecoin over the open x402 protocol — non-custodial, on-chain settlement.
Real-time notifications for events on top blockchains. Response under 100ms.
AML address screening across 20+ blockchains
MCP servers, CLI and skills for AI agents
Precise blockchain transaction fee estimates based on transaction priority
Sync and manage HD wallets, keys and addresses
Prepare EVM transactions, including token transfers
Access to full transaction data on all transactions & addresses
Get live crypto prices, exchange rates, supply and token contracts across protocols via one REST API.
Test EVM transactions, optimize gas fees and identify security flaws
TL;DR — Pair Blockchain Events webhooks with AML address screening to catch unbacked minted tokens before your exchange credits them. Subscribe to token-transfer events on Base and BNB Smart Chain, then screen the source address and the minting contract against sanctions and risk lists on receipt. This lets you hold suspicious deposits for manual review instead of settling assets that no longer have collateral behind them.
The Sandbox reported a bridge exploit that minted unbacked SAND on Base and BNB Smart Chain, according to The Defiant. The tokens looked valid on-chain. Balances updated. Transfers confirmed. But the collateral backing them on the source chain was never locked.
For an exchange deposit engine, that is the worst kind of anomaly. Your listener sees a confirmed ERC-20 transfer to a user's deposit address. Your credit logic runs. The user withdraws real assets or trades against unbacked supply. By the time the bridge team announces the exploit, the settlement has already happened.
Bridge mints are indistinguishable from legitimate mints at the transaction level unless you screen the origin. The build problem for an exchange engineering lead is this: detect the anomaly in the window between confirmation and crediting, without adding minutes of latency to every honest deposit.
Register a callback for confirmed token transactions on the deposit addresses you control. On BNB Smart Chain the subscription targets the address-tokens-transactions-confirmed event. You supply the deposit address and the callbackUrl that receives the payload.
POST https://rest.cryptoapis.io/blockchain-events/bsc/mainnet/address-tokens-transactions-confirmed
Content-Type: application/json
X-API-Key: YOUR_API_KEY
{
"context": "sand-deposit-monitor",
"data": {
"item": {
"address": "0xYOUR_DEPOSIT_ADDRESS",
"allowDuplicates": false,
"callbackSecretKey": "your-shared-secret",
"callbackUrl": "https://your-service.example/hooks/tokens"
}
}
}
When a token transfer confirms, Crypto APIs POSTs to your callbackUrl. Your handler must return a 2xx quickly and push the event to a queue. Do not screen inline in the webhook response path.
From the queue, screen the sender against the AML endpoint. Screening runs per address and returns a risk assessment you can act on.
GET https://rest.cryptoapis.io/aml/addresses/0xSENDER_ADDRESS
X-API-Key: YOUR_API_KEY
The response returns a risk classification for the queried address. Use it to route the deposit: low risk continues to credit, elevated risk moves to manual review. Screening across chains is not one-size-fits-all — see our notes on AML address screening across 17 chains before you credit a deposit for the per-chain differences.
For the minting-anomaly case specifically, pair screening with a contract check. Pull the token contract metadata to confirm the asset matches the canonical SAND contract you expect, not a look-alike deployed by the exploit.
GET https://rest.cryptoapis.io/contracts/evm/bsc/mainnet/0xTOKEN_CONTRACT_ADDRESS/token-details
X-API-Key: YOUR_API_KEY
If the contract address of the incoming transfer does not match your allow-listed canonical contract for that symbol, hold the deposit regardless of the AML result. A mismatched contract is the strongest signal that supply was minted outside the legitimate bridge path.
Screening lists lag exploits. A contract deployed hours ago will not appear on a sanctions list. AML screening catches known bad actors and downstream laundering; it does not, on its own, flag a fresh unbacked mint. Treat the contract allow-list check as your primary anomaly detector and AML as the second layer.
Do not screen inside the webhook response. If your handler waits on the AML call before returning, timeouts trigger retries and you build duplicate work. Set allowDuplicates to false and make your queue consumer idempotent by transaction hash.
Watch reorg risk. Confirmed-transaction events fire after the confirmations you configure, but low-confirmation crediting on fast chains increases exposure. For high-value deposits, use the each-confirmation variant to raise your threshold before crediting.
Rate limits apply to AML lookups. Batch and cache screening results per address within your review window rather than re-querying on every event from the same sender. Store the risk classification with a short TTL tied to your deposit hold policy.
Multichain coverage is the whole point here. An exploit that mints on both Base and BNB Smart Chain needs identical monitoring on each. Register the subscription per chain and per network; there is no cross-chain wildcard. Confirm your target chains against what we support before you build.
Bridge exploits are infrastructure failures, and the defense is infrastructure too. Blockchain Events gives you the sub-100ms confirmation signal, the /aml/addresses/{address} endpoint screens the source, and contract token-details lets you reject look-alike mints before they settle. Exchange teams building deposit engines can wire all three in a day — see the exchanges use case and start on the free tier.
Networks Supported
Avg Processing Time
Enterprise-ready
of Big Data