GET
/
reward-kit
/
boosts
curl --request GET \
  --url https://api-v2.boost.xyz/reward-kit/boosts
{
  "boosts": [
    {
      "id": "8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1",
      "chainId": 123,
      "incentives": [
        {
          "type": "AllowListIncentive",
          "assetAddress": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
          "rewardPercentage": 50,
          "rewardAmount": "<string>",
          "rewardAmountFormatted": "<string>",
          "maxReward": "<string>",
          "rewardUsdValue": 123,
          "tokenSymbol": "<string>",
          "tokenImageUri": "<string>",
          "metadata": {
            "id": "<string>",
            "chainId": 123,
            "address": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
            "decimals": 123,
            "name": "<string>",
            "symbol": "<string>",
            "imageUri": "<string>"
          }
        }
      ],
      "status": "active",
      "txHash": "<string>",
      "boostName": "<string>",
      "nftImageUri": "<string>",
      "nftName": "<string>",
      "tokenImageUri": "<string>",
      "blockTimestamp": "<string>",
      "actionTemplate": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "projectId": "<string>",
        "actionType": "mint",
        "projectImage": "<string>"
      }
    }
  ]
}

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
budgetAccount
string

Filter boosts by a specific budget account address

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

owner
string

Filter boosts by a specific owner address

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

chainId
integer | null

Only retrieve Boosts for a specific chain ID. You must supply this parameter if also specifying targetContract

Required range: x >= 0
targetContract
string

Retrieve rewards configured with actions that target a specific contract i.e., Zora's address for all rewards that require a mint in order to claim a reward. If you supply this parameter, you must also supply chainId

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

tokens
string

Retrieve rewards configured with specific token addresses

Example:

"chainId:tokenAddress,chainId:tokenAddress:collection,..."

creatorAddress
string

Filter rewards by the reward creator's address.

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

claimantAddress
string

Filter rewards by the address of the claimant.

Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

status
enum<string>
default:claimable

Filter rewards by their status, either active, claimed, or claimable.

Available options:
active,
claimed,
claimable

Response

200
application/json
Returns a list of RewardKit rewards

The API response for a user's RewardKit rewards

boosts
object[]
required

A list of RewardKit rewards that match a filter criteria

A single RewardKit reward, with incentives, and additional configuration