Skip to main content
GET
/
api
/
minting
/
assets
/
allowlist
Get minting allowlist
curl --request GET \
  --url https://admin.snagsolutions.io/api/minting/assets/allowlist \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "mintingContractAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "walletAddress": "<string>",
      "totalQuantity": 123,
      "quantityMinted": 123
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

mintingContractAssetId
string<uuid>
required
walletAddress
string
limit
integer
default:10

Number of items to return

Required range: 1 <= x <= 100
Example:

10

startingAfter
string<uuid>

Cursor for pagination (entry ID)

Example:

"00000000-0000-0000-0000-000000000000"

Response

200

Response schema for allowlist entries

data
object[]
required
hasNextPage
boolean
required