Get Airdrops
This page documents the API endpoint for retrieving Artist airdrop information on the In Process protocol.
Endpoint
GET https://inprocess.world/api/airdropsQuery Parameters
The following query parameters are available. Only artist_address is required:
Required query parameters
artist_address(string): Artist address
Optional query parameters
chainId(number): Chain ID (default: Base, 8453)offset(number): Pagination offset (default: 0)
Example Requests
cURL
curl "https://inprocess.world/api/airdrops?artist_address=0x297F21AAc502571db2c7dBFD271E68Dae7F2cE1E&chainId=84532&offset=0"Example Response
[
{
"collectionAddress": "0x297F21AAc502571db2c7dBFD271E68Dae7F2cE1E",
"tokenId": "1",
"recipient": {
"address": "0xb5acded340d66678f01097818940a0f028dafb8d",
"username": "sweetman"
},
"amount": 2
}
]