Airdrops
Get airdrops for an address
API Documentation
Address
Airdrops
Events
Farming
DEFI Actions
Airdrops
Get airdrops for an address
Returns the airdrops information (Bluefin, Suilend) for a given address
GET
/
onchain
/
{address}
/
airdrops
curl --request GET \
--url https://api.getnimbus.io/onchain/{address}/airdrops
{
"status": "success",
"data": {
"bluefinAirdrops": {
"amount": 123,
"eligible": true,
"protocol": "<string>",
"token": "<string>"
},
"suilendAirdrops": {
"amount": 123,
"eligible": true,
"protocol": "<string>",
"token": "<string>"
}
}
}
Path Parameters
The address to get airdrops for
Response
200
application/json
Successful response with airdrops data
Example:
"success"
curl --request GET \
--url https://api.getnimbus.io/onchain/{address}/airdrops
{
"status": "success",
"data": {
"bluefinAirdrops": {
"amount": 123,
"eligible": true,
"protocol": "<string>",
"token": "<string>"
},
"suilendAirdrops": {
"amount": 123,
"eligible": true,
"protocol": "<string>",
"token": "<string>"
}
}
}