API Reference
Wallets
- POSTCreate Wallet
- GETGet Wallet By Locator
- GETGet Wallet Balance
- POSTFund Wallet
- GETGet NFTs from Wallet
- POSTCreate Transaction
- GETGet Transaction
- GETGet Wallet Transactions
- POSTApprove Transaction
- POSTCreate Signature
- GETGet All Signatures
- GETGet Signature
- POSTApprove Signature
- POSTRegister Delegated Signer
- GETGet Delegated Signer
NFTs
IP
NFT Collections
NFT Templates
Verifiable Credentials
Verifiable Credential Types
Headless Checkout
Action Status
Admin
Subscriptions
NFTs
Mint Status
Get the status and associated information for a mint operation.
API scope required: nfts.read
GET
/
2022-06-09
/
collections
/
{collectionId}
/
nfts
/
{id}
curl --request GET \
--url https://staging.crossmint.com/api/2022-06-09/collections/{collectionId}/nfts/{id} \
--header 'X-API-KEY: <api-key>'
{
"id": "<string>",
"metadata": {
"name": "<string>",
"image": "<string>",
"description": "<string>"
},
"onChain": {
"status": "success",
"tokenId": "<string>",
"owner": "<string>",
"txId": "<string>",
"contractAddress": "<string>",
"chain": "polygon"
},
"action": "https://staging.crossmint.com/api/2022-06-09/actions/<actionId>"
}
{
"id": "<string>",
"metadata": {
"name": "<string>",
"image": "<string>",
"description": "<string>"
},
"onChain": {
"status": "success",
"tokenId": "<string>",
"owner": "<string>",
"txId": "<string>",
"contractAddress": "<string>",
"chain": "polygon"
},
"action": "https://staging.crossmint.com/api/2022-06-09/actions/<actionId>"
}
Authorizations
Path Parameters
Every project can mint to their pre-built collections (with IDs 'default-solana' or 'default-polygon'), or use the create-collection
endpoint
Unique ID of the mint as returned as part of the NFT creation response
Response
200
application/json
Success.
Was this page helpful?
curl --request GET \
--url https://staging.crossmint.com/api/2022-06-09/collections/{collectionId}/nfts/{id} \
--header 'X-API-KEY: <api-key>'
{
"id": "<string>",
"metadata": {
"name": "<string>",
"image": "<string>",
"description": "<string>"
},
"onChain": {
"status": "success",
"tokenId": "<string>",
"owner": "<string>",
"txId": "<string>",
"contractAddress": "<string>",
"chain": "polygon"
},
"action": "https://staging.crossmint.com/api/2022-06-09/actions/<actionId>"
}