get https://open-api-v4.coinglass.com/api/chain/whale-transfer
This endpoint provides large on-chain transfers (minimum $10M) within the past six months across major blockchains, including Bitcoin, Ethereum, Tron, Ripple, Dogecoin, Litecoin, Polygon, Algorand, Bitcoin Cash, and Solana.
Cache / Update Frequency: Real time for all the API plans.
This endpoint is available on the following API plans:
| Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
|---|---|---|---|---|---|
| Available | ❌ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0", // status: "0" = success
"data": [
{
"amount_usd": "18403606.873493258", // transfer value in USD
"asset_quantity": "10081.791421235566", // transferred amount
"asset_symbol": "WETH", // asset symbol
"from": "unknown wallet", // sender
"to": "unknown wallet", // receiver
"blockchain_name": "ethereum", // blockchain name
"block_height": 22402402, // block number
"block_timestamp": 1746265043 // block time (unix)
},
{
"amount_usd": "18413630.94247512", // transfer value in USD
"asset_quantity": "10087.28276721801", // transferred amount
"asset_symbol": "WETH", // asset symbol
"from": "unknown wallet", // sender
"to": "unknown wallet", // receiver
"blockchain_name": "ethereum", // blockchain name
"block_height": 22402402, // block number
"block_timestamp": 1746265043 // block time (unix)
}
....
]
}