get https://open-api-v3.coinglass.com/api/exchange/chain/tx/list
The API retrieves on-chain transfer records for exchanges.
Response Data
{
code: "0",
msg: "success",
data: [
{
txHash: "0x34da8bec90fcc80826261bb2d6a3ec985ba54d02d103e9bd1440b4b6bde861ca", // Transaction Hash
symbol: "USDT", // Cryptocurrency
usd: 4993.975683, // Amount in USD
amount: 4993.975683, // Quantity
exName: "Binance", // Exchange Name
side: 2, // 1: Transfer In, 2: Transfer Out, 3: Internal Transfer
from: "0x21a31ee1afc51d94c2efccaa2092ad1028285549", // Sending Address
to: "0x522ff17c6ab585047174e6d1817b046d38f7c5f9" // Receiving Address
},
...
]
}
Field | Description |
---|---|
txHash | Transaction Hash |
symbol | eg. ETH |
usd | Amount in USD |
amount | Quantity |
exName | Exchange Name |
side | 1: Transfer In, 2: Transfer Out, 3: Internal Transfer |
from | Sending Address |
to | Receiving Address |