GET
/
policy
/
{policy}
/
mints
Transactions minting or burning assets of policy
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/policy/{policy}/mints \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "tx_hash": "257916e7ae112cf16f27218e41bfa37c018bab922354201b3b38c9a24c35ab33",
      "slot": 55718892,
      "timestamp": "2022-03-14 19:13:03",
      "assets": [
        {
          "name": "6164616d616e74",
          "amount": "1"
        },
        {
          "name": "6264736d",
          "amount": "1"
        },
        {
          "name": "63617264616e6f737765657473",
          "amount": "1"
        }
      ]
    }
  ],
  "last_updated": {
    "timestamp": "2023-10-18 07:30:52",
    "block_hash": "0e1e924710135acfe200ab13d290bd282a67584fd54456f0dcac0aeaa38bb2c2",
    "block_slot": 106047961
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

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
order
enum<string>
default:asc

The order in which the results are sorted (by point in chain)

Available options:
asc,
desc
from
integer | null

Return only transactions in blocks minted on or after a specific slot

Required range: x >= 0
to
integer | null

Return only transactions in blocks minted before a specific slot

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

Array of transactions with assets and amounts minted

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