get https://api.blockvision.org/v2/monad/token/market/data
Retrieve real-time market data for a specific coin, including price, volume, market cap, and percentage changes over configurable time intervals.
Supported on Monad Testnet.
The Indexing API on Monad is currently available to our paid Members. Free tier members can also enjoy a trial period with 30 free calls. If you're interested, please register directly through here. Please note that the API Key can also be used for your RPC endpoint.
Parameter
token
,string
- the contract address for the token to get the information from monad.
Response
priceInUsd
,string
- the current token price in USD (e.g., "3.38").marketCap
,string
- the market cap of the token, in USD.liquidityInUsd
,string
- the total liquidity (TVL) across trading pools, in USD.fdvInUsd
,string
- the total liquidity (TVL) across trading pools, in USD.circulating
,string
- the circulating supply of the token.supply
,string
- the total (max or current) supply of the token.volume24H
,integer
- total trading volume over the past 24 hours, in USD.market
,object
- each key (m30, hour1, hour4, hour24) represents a time window of:m30
,market object
β 30 minuteshour1
,market object
β 1 hourhour4
,market object
β 4 hourshour24
,market object
β 24 hourstokenId
,string
β the unique identifier of the token on-chain (e.g., 0x760AfE86e5de5fa0Ee542fc7B7B713e1c5425701).interval
,string
β time window label (e.g., "30m", "1h").priceChange
,string
β percentage change in price within the interval (e.g., -0.22 = -0.22%).buys
,integer
β total number of buy-side transactions in this interval.sells
,integer
β total number of sell-side transactions.buyVolume
,integer
β total amount bought in the interval (in token units).sellVolume
,integer
β total amount sold in the interval (in token units).buyers
,integer
β number of unique addresses that bought during this interval.sellers
,integer
β number of unique addresses that sold during this interval.txn
,integer
β total number of swap or trade transactions.volume
,integer
β total trading volume (buy + sell) for this interval (in token units).markers
,integer
β number of unique market maker addresses interacting during the interval.