Address
Get points for an address
API Documentation
Address
Airdrops
Events
Farming
DEFI Actions
Address
Get points for an address
Returns the points and related data for a given address, including total points, market data, and point market listings
GET
/
points
/
{address}
curl --request GET \
--url https://api.getnimbus.io/points/{address}
{
"status": "success",
"data": {
"data": [
{
"protocol": "<string>",
"protocolLabel": "<string>",
"note": "<string>",
"points": 123,
"stage": "<string>"
}
],
"totalPoint": 123,
"dataWhalesMarket": [
{
"id": "<string>",
"name": "<string>",
"price": 123
}
],
"pointMarketList": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>"
}
]
}
}
Path Parameters
Response
200
application/json
Successful response with points data
Example:
"success"
Total points accumulated
curl --request GET \
--url https://api.getnimbus.io/points/{address}
{
"status": "success",
"data": {
"data": [
{
"protocol": "<string>",
"protocolLabel": "<string>",
"note": "<string>",
"points": 123,
"stage": "<string>"
}
],
"totalPoint": 123,
"dataWhalesMarket": [
{
"id": "<string>",
"name": "<string>",
"price": 123
}
],
"pointMarketList": [
{
"id": "<string>",
"type": "<string>",
"status": "<string>"
}
]
}
}