Skip to main content
GET
/
known-signatures
Find event and function signatures used in Boost configurations
curl --request GET \
  --url https://api-v2.boost.xyz/known-signatures
{
  "signatures": [
    {
      "id": "0x00000000000000000000000000000000000000000000000000000000a836f32f",
      "textSignature": "mint(address mintTo,uint256 quantity,address collection,uint256 tokenId,address mintReferral,string comment)",
      "signatureType": "function",
      "abiItem": {
        "name": "mint",
        "type": "function",
        "inputs": [
          {
            "name": "mintTo",
            "type": "address"
          },
          {
            "name": "quantity",
            "type": "uint256"
          },
          {
            "name": "collection",
            "type": "address"
          },
          {
            "name": "tokenId",
            "type": "uint256"
          },
          {
            "name": "mintReferral",
            "type": "address"
          },
          {
            "name": "comment",
            "type": "string"
          }
        ],
        "outputs": [],
        "stateMutability": "nonpayable"
      }
    }
  ],
  "count": 123
}

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

Response

200 - application/json

Returns a list of Boosts

signatures
object[]
required
count
number
required

The total number of signatures returned in this api call.