Get Address Overview
Returns the balance and statistics for a given address.
Returns the balance and statistics for a given address.
https://www.spyderlab.org/api/v1/address-detailsTry this endpoint in your browser π
Query Parameters
coin
string
the coin to check for overview datas, all optional values can be found here
address
string
the address to check for overview datas
api_key
string
your api key
balance
float(4)
The balance of the query address
txs_count
int
Total number of transactions of the query address
first_seen
int
The first transaction time of the query address, in unix timestamp format
last_seen
int
The last transaction time of the query address, in unix timestamp format
total_received
float(4)
The total received amount of the query address
total_spent
float(4)
The total spent amount of the query address
received_txs_count
int
Total number of incoming transactions of the query address
spent_txs_count
int
Total number of outgoing transactions of the query address
Sample Response
{
"success": true,
"msg": "",
"data": {
"balance": 49.8305,
"txs_count": 1231,
"first_seen": 1441800674,
"last_seen": 1670971955,
"total_received": 916204.8697,
"total_spent": 916151.0499,
"received_txs_count": 1018,
"spent_txs_count": 213
}
}Last updated