Airdrops
Launch Airdrop
You can quickly distribute tokens from collections you've launched with Comet by using the POST /airdrop
API endpoint. You'll need to specify a list of recipients (either their Comet User IDs or Solana addresses), and for each recipient indicate which collection you want them to receive. An example request is below.
After you've launched your airdrop, Comet will return an id
that you can use to monitor the status of the airdrop.
Keep in mind that you cannot mint any collection past its maxSupply
, when applicable. If you try to airdrop more NFTs from a collection than there are available tokens, some recipients won't receive the airdrop.
Even if your NFT collection requires payment, recipients will receive your airdropped NFTs for free.
Send tokens to many users.
POST
https://api.withcomet.com/v1/airdrop
Headers
Authorization*
String
Bearer token
Request Body
airdrops*
String
List of recipients, specifying which collection each will receive.
Check Airdrop Status
Get the status of a previously launched airdrop.
GET
https://api.withcomet.com/v1/airdrop/:id
Headers
Authorization*
String
Bearer token
Last updated