post
/v4/volume/boost
Compute a boost per address: the summed VolumeEntry amount over the config matching clientId and program. Each posted address is returned with its boost ("0" when none match); the zero address is always included with "0".
Query parameters
clientIdstringrequired
programstringrequired
Request body
object
addressesstring[]required
Wallet addresses to look up (case-insensitive). Up to 500 per request.Responses
200Response 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"
}
]post
https://api.merkl.xyz/v4/volume/boostcurl -X POST "https://api.merkl.xyz/v4/volume/boost" \
-H "Content-Type: application/json" \
-d '{ "addresses": [ "string" ] }'Current params
{
"body": {
"addresses": [
"string"
]
}
}Live request — this will call https://api.merkl.xyz/ for real.