Address
Get airdrops for an address
API Documentation
Address
Airdrops
Events
Farming
DEFI Actions
Address
Get airdrops for an address
Returns the airdrops for a given address
GET
/
airdrops
/
{address}
curl --request GET \
--url https://api.getnimbus.io/airdrops/{address}
{
"status": "success",
"data": [
{
"amount": 123,
"eligible": true,
"latency": 123,
"logoUrl": "<string>",
"note": "<string>",
"potentialValueUsdc": 123,
"protocol": "<string>",
"protocolLabel": "<string>",
"stage": "<string>",
"ticker": "<string>",
"token": "<string>",
"tokenPrice": 123
}
]
}
Path Parameters
Response
200
application/json
Successful response with airdrops data
Example:
"success"
Amount of tokens in the airdrop
Whether the address is eligible for the airdrop
Response latency in milliseconds
URL of the protocol logo
Additional notes about the airdrop
Potential value in USDC
Protocol identifier
Human readable protocol name
Current stage of the airdrop
Token ticker symbol
Token identifier
Current token price
curl --request GET \
--url https://api.getnimbus.io/airdrops/{address}
{
"status": "success",
"data": [
{
"amount": 123,
"eligible": true,
"latency": 123,
"logoUrl": "<string>",
"note": "<string>",
"potentialValueUsdc": 123,
"protocol": "<string>",
"protocolLabel": "<string>",
"stage": "<string>",
"ticker": "<string>",
"token": "<string>",
"tokenPrice": 123
}
]
}