Active Withdrawals
Definition
Active Withdrawals
Shows the number of unique withdrawal addresses that have been active on a particular day for a given asset. Refer to a withdrawal address explanation here
Withdrawal Transactions
Withdrawal transactions metric shows the total number of all outgoing transactions involving withdrawal addresses on a particular day. Basically, this metric accounts for exchange-to-user transactions.
For an exchange-specific data please refer to that page
Access
The metric is with restricted access.
Measuring Unit
Non-negative number of addresses
Data Type
Frequency
active_withdrawals
withdrawal_transactions
active_withdrawals_5m
withdrawal_transactions_5m
Latency
Available Assets
SanAPI
The metric is available under the active_withdrawals
name for daily resolution and active_withdrawals_5m
for intraday resolution.
1 2 3 4 5 6 7 8 9 10 11 12 13
{ getMetric(metric: "active_withdrawals") { timeseriesData( slug: "ethereum" from: "2023-05-09T11:25:04.894Z" to: "2023-06-23T11:25:04.894Z" interval: "1d" ) { datetime value } } }
Withdrawal transactions are available under withdrawal_transactions
and withdrawal_transactions_5m
names.
1 2 3 4 5 6 7 8 9 10 11 12
{ getMetric(metric: "withdrawal_transactions_5m") { timeseriesData( slug: "ethereum" from: "2024-01-01T00:00:00.000Z" to: "2024-01-02T00:00:00.000Z" interval: "1h") { datetime value } } }