Skip to main content
GET
/
signatures
/
claimable
/
{address}
Get claimable signatures for an address
curl --request GET \
  --url https://api-v2.boost.xyz/signatures/claimable/{address}
[
  {
    "boostId": "8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1",
    "signature": "<string>",
    "claimant": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
    "incentiveId": 123,
    "referrer": "0x378632819f39c74c4f56b1429e760739c5fb51b7"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.boost.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

address
string
required

The wallet address to find claimable signatures for

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

Response

200 - application/json

Claimable signatures for the given address

boostId
string
required

The boost ID associated with the signature

Example:

"8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1"

signature
string
required

Claim signature that can be used with the Boost Protocol V2 claim methods

claimant
string
required

The address for the user making the claim

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"

incentiveId
number
required

The index of the incentive being claimed

referrer
string
required

The address of the referrer

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x378632819f39c74c4f56b1429e760739c5fb51b7"