Merkl Developer Portal logo
post

/v4/volume/boost

Compute a boost per address: an address with at least one VolumeEntry in a config matching the optional clientId and program filters gets a 1x boost (base 1e9). Addresses without a matching entry are omitted; the zero address is always included with "0".

Query parameters

clientIdstring

Filter by the config's clientId.

programstring

Filter by the config's program.

Request body

object
addressesstring[]
required
Wallet addresses to look up (case-insensitive). Up to 500 per request.

Responses

200
Response for status 200
Schema
object[]
addressstringThe queried wallet address.
booststringSummed entry amount for the address, as a decimal string. "0" when none match.
Example
[
  {
    "address": "string",
    "boost": "string"
  }
]