Authorization
Bearer token. Format: Bearer <token>
Body Parameters
ID of completed generation to mint as NFT.
Format: gen_<12 chars>
NFT name. Max 32 characters.
NFT description. Max 200 characters.
NFT collection symbol. Max 10 characters.
Creator royalty percentage. Range: 0.0 - 0.1 (0% - 10%)
Array of trait objects with trait_type and value properties.
Response
Unique mint identifier. Format: mint_<12 chars>
Solana NFT mint address (base58)
Metaplex metadata account address (base58)
Solana transaction signature (base58)
Mint status. Values: pending, confirmed, failed
Solana Explorer URL for the transaction
ISO 8601 timestamp of mint request
curl --request POST \
--url https://api.pixellabsai.app/v1/mint \
--header 'Authorization: Bearer pixel_live_abc123def456' \
--header 'Content-Type: application/json' \
--data '{
"generationId": "gen_8f7b2c9a1e3d",
"name": "Cyberpunk Samurai #001",
"description": "AI-generated cyberpunk warrior with glowing katana",
"symbol": "CYBER",
"royalty": 0.05,
"attributes": [
{
"trait_type": "Style",
"value": "Cyberpunk"
},
{
"trait_type": "Weapon",
"value": "Katana"
},
{
"trait_type": "Rarity",
"value": "Legendary"
}
]
}'
{
"mintId": "mint_9g8h7i6j5k4l",
"nftAddress": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
"metadataAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"transactionSignature": "5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW",
"status": "confirmed",
"explorerUrl": "https://explorer.solana.com/tx/5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW",
"createdAt": "2026-03-16T14:31:45Z"
}