GET
/
assets
/
{asset}
/
accounts
Accounts of addresses holding specific asset
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/assets/{asset}/accounts \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "account": "stake1uy3c9n7hlnvt2eucfpgd8ezqn424na7nhc6zca2atq0tqsg5ljq5v",
      "amount": 1
    },
    {
      "account": "stake1uylx7yct3smspkes9fzk3f8y8mmu90htxe75g923576d2zgpluxt7",
      "amount": 3
    }
  ],
  "last_updated": {
    "block_hash": "bdf4630098ac6923e0ef1ca0b0d6e00dca96790a8c3dd670948fdfe1456798d2",
    "block_slot": 73867237
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Headers

amounts-as-strings
string | null

Large numbers returned as strings if set to true

Path Parameters

asset
string
required

Asset, encoded as concatenation of hex of policy ID and asset name

Query Parameters

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

Returns stake addresses for accounts which control some of the specified asset

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