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
The response is of type object
.
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
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.