v2

latestOpenAPI 3.1.02026-08-01170225.5 KB
Boost

Get events for a specific Boost

Retrieve a history of claimed incentives

get/boosts/:id/activity

Path parameters

idstring required

BoostID in format chainId:boostCoreAddress:identifier

Example:8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1

BoostID in format chainId:boostCoreAddress:identifier

Query parameters

pageinteger nullable

The desired page to return from the query

pageSizeinteger nullable

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

claimantstring

Retrieve Boost activity for this claimant address

Example:0x378632819f39c74c4f56b1429e760739c5fb51b7

Response

Returns a list of Boosts

totalActivityCountinteger required

The total number of claims

Example response

{
  "activityEvents": [
    {
      "claimant": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "incentives": [
        {
          "allowListAddress": "0x378632819f39c74c4f56b1429e760739c5fb51b7"
        }
      ]
    }
  ]
}