Skip to main content

Deposit Listing

Real-time stream of large on-chain deposits detected arriving at exchange wallets. Each event carries the asset, amount (native plus USD/KRW), chain, transaction hash, and sender/recipient addresses — useful for exchange-flow and listing signals.

Connect

websocat wss://api.datamaxiplus.com/ws/v1/front/listing/deposit -H 'X-DTMX-APIKEY: $YOUR_API_KEY'

Subscribe

To subscribe to the deposit listing data stream, send a subscription request.

  • method specifies the type of request.
  • id uniquely identifies the subscription request.
{
"method": "SUBSCRIBE",
"id": int32
}

If the subscription was successful, the server responds with the message in the following format.

  • id corresponds to the subscription request ID.
{
"id": int32
}

Unsubscribe

Unsubscribe from the data stream using the same format as the subscription request.

  • method specifies the type of request.
  • id uniquely identifies the subscription request.
{
"method": "UNSUBSCRIBE",
"id": int32
}

Response

Schema
    tx_hash string

    On-chain transaction hash of the deposit.

    chain string

    Blockchain network (e.g. ethereum).

    block_number integer

    Block number containing the transaction.

    from_address string

    Sender wallet address.

    to_address string

    Recipient (exchange) wallet address.

    asset string

    Deposited asset / token symbol (e.g. BTC).

    amount number

    Deposit amount in native asset units.

    amount_usd number

    Deposit amount converted to USD (nullable).

    amount_krw number

    Deposit amount converted to KRW (nullable).

    exchange string

    Destination exchange name (e.g. binance).

    timestamp integer

    Event time in UTC milliseconds.

    type integer

    Listing user-type classification code for the depositing entity.