Authorizations
API Key for authentication
Body
application/json
Response
200 - application/json
Successful response
curl --request POST \
--url https://data.solanatracker.io/price/multi \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"tokens": [
"<string>"
]
}'
{
"HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump": {
"price": 0.000021934650668759846,
"priceQuote": 1.208617203224043e-7,
"liquidity": 29081.321914523014,
"marketCap": 21330.314314819956,
"lastUpdated": 1760274132867
}
}
Similar to GET /price/multi, but accepts an array of token addresses in the request body
curl --request POST \
--url https://data.solanatracker.io/price/multi \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"tokens": [
"<string>"
]
}'
{
"HEZ6KcNNUKaWvUCBEe4BtfoeDHEHPkCHY9JaDNqrpump": {
"price": 0.000021934650668759846,
"priceQuote": 1.208617203224043e-7,
"liquidity": 29081.321914523014,
"marketCap": 21330.314314819956,
"lastUpdated": 1760274132867
}
}
API Key for authentication
Successful response
Show child attributes
Was this page helpful?