GET
/
1
/
market
/
multi-prices
Get market multi prices
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/market/multi-prices
{
  "data": {}
}

Query details

This endpoint accepts queries with both blockchain and assets parameters, where assets are typically token contract addresses. The market data asset query pattern is explained in great details here, with blockchain format, etc.
ParameterTypeDescription
blockchainsstringComma-separated list of blockchain names or IDs specifying the networks of the assets.
assetsstringComma-separated list of asset identifiers (token names or contract addresses) to query prices for.
This endpoint returns only pool-based price data. - No asset metadata - No market cap or volume data - No database involved — optimized for speed and efficiency - Best suited for use cases where you only need current token prices from DeFi pools
For large payloads or complex asset lists, use the POST /1/market/multi-prices variant instead. It avoids URL length limits and improves stability when sending many assets.
We will map the first blockchain with the first contract address found, and so on.
Need more than 500 assets? You can use the /all endpoint to get all assets listed on Mobula (curated, not all DeFi tokens)

Data details

Price data is computed using Octopus, Mobula’s market data engine. You can have a high-level overview of how it’s computing DeFi prices here. volume is on-chain volume, and off_chain_volume is - as name implies, the off-chain volume.

Usage Examples

  • Query by assets & blockchains
curl -X GET "https://api.mobula.io/api/1/market/multi-prices?blockchains=ethereum,ethereum&assets=0x0000000000c5dc95539589fbd24be07c6c14eca4,0x6982508145454ce325ddbe47a25d4ec3d2311933"

Query Parameters

blockchains
assets

Response

200 - application/json

Market multi prices response

The response is of type object.