get https://api.blockvision.org/v2/sui/coin/market/pro
Retrieve real-time market data for a specific coin, including price, volume, market cap, and percentage changes over configurable time intervals.
Supported on Sui Mainnet.
The Indexing API on Sui is currently exclusively available to Pro Members. Non-Pro members can also enjoy a trial period with an allocation of 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
coinType
,string
- the coinType for the coin to get the information from SuiVision coin page.
Response
priceInUsd
,string
- the current token price in USD (e.g., "3.38").marketCap
,string
- the name return from metadata of the coin.(e.g., Cetus Token)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., 0x...::sui::SUI).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.