GET
/
v1-alpha1
/
minting
/
collections
/
{collectionId}
/
royalties
curl --request GET \
  --url https://staging.crossmint.com/api/v1-alpha1/minting/collections/{collectionId}/royalties \
  --header 'X-API-KEY: <api-key>'
{
  "recipients": [
    {
      "address": "0x71C...",
      "basisPoints": 100
    }
  ]
}

This is an alpha API and subject to change.

Authorizations

X-API-KEY
string
header
required

Path Parameters

collectionId
string
default:
default-solana
required

Collection identifier. For pre-built collections use IDs 'default-solana' or 'default-polygon'. use the result of the create-collection endpoint to get the identifier for custom collections.

Response

200
application/json
Success.
recipients
object[]