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
- wscat
websocat wss://api.datamaxiplus.com/ws/v1/front/listing/deposit -H 'X-DTMX-APIKEY: $YOUR_API_KEY'
wscat -c 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.
methodspecifies the type of request.iduniquely identifies the subscription request.
- schema
- example
{
"method": "SUBSCRIBE",
"id": int32
}
{
"method": "SUBSCRIBE",
"id": 1
}
If the subscription was successful, the server responds with the message in the following format.
idcorresponds to the subscription request ID.
- schema
- example
{
"id": int32
}
{
"id": 1
}
Unsubscribe
Unsubscribe from the data stream using the same format as the subscription request.
methodspecifies the type of request.iduniquely identifies the subscription request.
- schema
- example
{
"method": "UNSUBSCRIBE",
"id": int32
}
{
"method": "UNSUBSCRIBE",
"id": 1
}
Response
- Schema
- Example
Schema
On-chain transaction hash of the deposit.
Blockchain network (e.g. ethereum).
Block number containing the transaction.
Sender wallet address.
Recipient (exchange) wallet address.
Deposited asset / token symbol (e.g. BTC).
Deposit amount in native asset units.
Deposit amount converted to USD (nullable).
Deposit amount converted to KRW (nullable).
Destination exchange name (e.g. binance).
Event time in UTC milliseconds.
Listing user-type classification code for the depositing entity.
{
"tx_hash": "0x2b8e3f5a1c9d7e4b6a0f8c2d1e5b7a9f3c6d8e0b2a4f6c8d0e2b4a6f8c0d2e4b",
"chain": "ethereum",
"block_number": 19875432,
"from_address": "0x3a1f9c2b7e8d4a6f0c5b9e1d7a3f8c2b6e0d4a9f",
"to_address": "0x28c6c06298d514db089934071355e5743bf21d60",
"asset": "BTC",
"amount": 12.5,
"amount_usd": 812500.0,
"amount_krw": 1120000000,
"exchange": "binance",
"timestamp": 1720123456000,
"type": 1
}