CryptoNews API · Example Payload

Get Whale Transactions

CryptocurrencyNewsSentiment AnalysisBitcoinMarket DataWhale TransactionsCrypto Prices

Get Whale Transactions is an example object payload from CryptoNews API, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

datacount

Example Payload

Raw ↑
{
  "data": [
    {
      "id": "abc123def456",
      "blockchain": "Bitcoin",
      "symbol": "BTC",
      "transaction_type": "transfer",
      "from": "Unknown Wallet",
      "to": "Binance",
      "amount": 1250.5,
      "amount_usd": 87535000,
      "timestamp": 1749808800
    },
    {
      "id": "xyz789uvw012",
      "blockchain": "Ethereum",
      "symbol": "ETH",
      "transaction_type": "exchange deposit",
      "from": "Unknown Wallet",
      "to": "Coinbase",
      "amount": 18500.0,
      "amount_usd": 66600000,
      "timestamp": 1749805200
    },
    {
      "id": "lmn345opq678",
      "blockchain": "Bitcoin",
      "symbol": "BTC",
      "transaction_type": "exchange withdrawal",
      "from": "Kraken",
      "to": "Unknown Wallet",
      "amount": 850.25,
      "amount_usd": 59517500,
      "timestamp": 1749801600
    }
  ],
  "count": 3
}