GET
/
address
/
{address}
Address
curl --request GET \
  --url https://xbt-mainnet.gomaestro-api.org/v0/esplora/address/{address} \
  --header 'api-key: <api-key>'
{
  "address": "<string>",
  "chain_stats": {
    "tx_count": 123,
    "funded_txo_count": 123,
    "funded_txo_sum": 123,
    "spent_txo_count": 123,
    "spent_txo_sum": 123
  },
  "mempool_stats": {
    "tx_count": 123,
    "funded_txo_count": 123,
    "funded_txo_sum": 123,
    "spent_txo_count": 123,
    "spent_txo_sum": 123
  }
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Bitcoin address to query

Example:

"bc1qcx7ys0ahvtfqcc63sfn6axls0qrhkadnslpd94"

Response

200
application/json

Address information returned successfully

The response is of type object.