GET
/
boosts
/
:id
/
activity
curl --request GET \
  --url https://api-v2.boost.xyz/boosts/:id/activity
{
  "activityEvents": [
    {
      "claimant": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "blockTimestamp": "<string>",
      "txHash": "<string>",
      "incentives": [
        {
          "type": "AllowListIncentive",
          "allowListAddress": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
          "limit": "<string>"
        }
      ]
    }
  ],
  "totalActivityCount": 1
}

Path Parameters

id
string
required

BoostID in format chainId:boostCoreAddress:identifier

Example:

"8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1"

Query Parameters

page
integer | null
default:1

The desired page to return from the query

Required range: x >= 0
pageSize
integer | null
default:10

The amount of items to return from the query, defaults to 10, and must be <= 100

Required range: 0 <= x <= 100
claimant
string

Retrieve Boost activity for this claimant address

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

Response

200
application/json
Returns a list of Boosts
activityEvents
object[]
required

A list of claim activity events

totalActivityCount
integer
required

The total number of claims

Required range: x >= 0