GET
/
accounts
/
{stake_addr}
/
addresses
Stake account addresses
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/accounts/{stake_addr}/addresses \
  --header 'api-key: <api-key>'
{
  "data": [
    "addr_test1qpshevet4xrh7h2rr7pm3r7ysn8x9hk5gek9xvm6du3yl6upahs8fhhy49jqqnfn6vvmtq6yeqypx645ex9fxexlh36q9scvx8"
  ],
  "last_updated": {
    "timestamp": "2022-10-10 20:25:28",
    "block_hash": "bbd15af995f81cf22e559679865d5a0fb1ba348559cf88e07686234e499859c4",
    "block_slot": 32208435
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

stake_addr
string
required

Bech32 encoded stake/reward address ('stake1...')

Query Parameters

include_empty
boolean | null

Include addresses that have been seen on-chain but have no balance

count
integer
default:100

The max number of results per page

Required range: x >= 0
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Response

200
application/json

Addresses seen on-chain which contain the specified stake key

A paginated response. Pass in the next_cursor in a subsequent request as the cursor query parameter to fetch the next page of results.