GET
/
boosts
curl --request GET \
  --url https://api-v2.boost.xyz/boosts
{
  "boosts": [
    {
      "id": "8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1",
      "action": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "allowList": {
        "owner": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
        "contractAddress": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
        "type": "SimpleAllowList",
        "addresses": [
          "0x378632819f39c74c4f56b1429e760739c5fb51b7"
        ]
      },
      "boostIndex": "<string>",
      "budget": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "incentiveCount": "<string>",
      "owner": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "validator": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
      "blockTimestamp": "<string>",
      "txHash": "<string>",
      "chainId": 123,
      "actionSteps": [
        {
          "chainId": 123,
          "claimant": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
          "signature": "<string>",
          "signatureName": "<string>",
          "signatureType": "event",
          "actionType": 123,
          "targetContract": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
          "parameters": {
            "filterType": 123,
            "fieldType": 123,
            "fieldIndex": 123,
            "filterData": "<string>"
          }
        }
      ],
      "protocolFee": "<string>",
      "maxParticipants": "<string>",
      "incentives": [
        {
          "type": "AllowListIncentive",
          "allowListAddress": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
          "limit": "<string>"
        }
      ],
      "createdAtChainBlockNumbers": {},
      "usdSpend": 123,
      "tokenSpend": 123,
      "createdAtBlockTimestamp": "<string>",
      "isActive": true,
      "availableBudgetUsd": "<string>",
      "templateId": "<string>",
      "nftImageUri": "<string>",
      "nftName": "<string>",
      "boostName": "<string>",
      "projectImageUri": "<string>",
      "tokenImageUri": "<string>"
    }
  ],
  "totalBoosts": 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
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,..."

actionTemplateOnly
string

Is the Boost action template only, or has a more customized action configuration

Response

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

An array of rewards matching provided criteria

totalBoosts
integer
required

The total number of rewards matching the provided criteria

Required range: x >= 0