GET
/
policy
/
{policy}
/
addresses
Addresses holding assets of specific policy
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/policy/{policy}/addresses \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "address": "addr_test1vpxa84r650wsmcm887kkwar5y7ek5yyrjvgfqd8a608s2vsdnutyy",
      "assets": [
        {
          "name": "6362544843",
          "amount": 100000000000000
        }
      ]
    },
    {
      "address": "addr_test1vrjpwhg7vlhck0ph5q0dpnkqferx3ltf0aqvy4qzn9m5v2gcvqhm8",
      "assets": [
        {
          "name": "6362544843",
          "amount": 320000000000000
        }
      ]
    }
  ],
  "last_updated": {
    "timestamp": "2022-10-10 20:25:28",
    "block_hash": "2863d3805fa06b0b8062df9c1cb62773e0961f8333ef2cd7ea3faca0f3c738a7",
    "block_slot": 32277823
  },
  "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

policy
string
required

Hex encoded Policy ID

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 addresses holding assets of the given policy ID with the asset names and amounts

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