For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Address Overview

Returns the balance and statistics for a given address.

HTTP Request

GET https://openapi.misttrack.io/v1/address_overview
   ?coin=ETH
   &address=0xab5801a7d398351b8be11c439e05c5b3259aec9b
   &api_key=YourApiKey

Try this endpoint in your browser 🔗

Query Parameters

Parameter
Type
Description

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

Field
Type
Description

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
        }
}

Rate Limits

Last updated