Coin Price Volume Multi
Retrieve the latest price, 24-hour volume, price change, and volume change for multiple coins in a single request.
Maximum 100 items can be requested at once.
Endpoint
POST /api/v1/partner/coin-price-volume-multi
Request Parameters
coin_ids
string[]
Yes
An array of unique identifiers for the coins (e.g., [0x...::module::COIN
,0x...::module::COIN
]). Maximum 100 items.
Headers
x-api-key
Yes
API key for authorization.
x-chain
Yes
Blockchain identifier (e.g., sui
).
cURL Example
curl --location 'https://api.noodles.fi/api/v1/partner/coin-price-volume-multi' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"coin_ids": ["0xcb8fc6858b4d600611cb783a65459695711b8aaca0e949ef5aa1268d1e32f786::suimon::SUIMON",
"0x7a272959f0bdfc46a89b6226666eae89ddbb9e392c15c96a3a912f5a854d5c63::oink::OINK"]
}'
Response
Field
Each coin in the response will have a mapping of its unique identifier to its price volume data:
Key: Coin Identifier (e.g.,
0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI
)Value: Coin Price Volume Data
If the coin has no data, the value will have zero values for all fields.
If the coin has data, the value will be an object containing the following fields:
price
number
No
Price of the coin.
volume_24h
number
No
24-hour trading volume in USD.
price_change_24h
number
No
Percentage change in price over the last 24 hours.
volume_change_24h
number
No
Percentage change in trading volume over the last 24 hours.
Success Response
{
"code": 200,
"message": "OK",
"data": {
"0x7a272959f0bdfc46a89b6226666eae89ddbb9e392c15c96a3a912f5a854d5c63::oink::OINK": {
"price": 0.00025,
"volume_24h": 2004.4,
"price_change_24h": -13.73,
"volume_change_24h": -59
},
"0xcb8fc6858b4d600611cb783a65459695711b8aaca0e949ef5aa1268d1e32f786::suimon::SUIMON": {
"price": 0.000713,
"volume_24h": 46076.21,
"price_change_24h": -5.66,
"volume_change_24h": 2.79
}
}
}
See also: Environment Setup
Last updated