Skip to main content
POST
/
moment
/
airdrop
Airdrop a Moment
curl --request POST \
  --url https://api.inprocess.world/api/moment/airdrop \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "recipients": [
    {
      "recipientAddress": "<string>",
      "tokenId": "<string>"
    }
  ],
  "collectionAddress": "<string>"
}
'
{
  "hash": "<string>",
  "chainId": 8453
}

Documentation Index

Fetch the complete documentation index at: https://docs.inprocess.world/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Artist API key for authentication. Get your API key from https://inprocess.world/manage/api-keys

Body

application/json
recipients
object[]
required

Array of recipients to receive the airdrop

collectionAddress
string
required

Contract address of the moment collection

Response

Successful response

hash
string
required

Transaction hash of the operation

chainId
integer
required

Chain ID where the transaction was executed

Example:

8453