.get_market_caps
Fetches the latest supply and market-cap values for the requested coins.
Example
market_caps = client.get_market_caps(['BTC', 'ETH'])Parameters
coins
- Type:
list[str]
One or more Velo-normalized coin symbols.
Return type
pandas.DataFrame
Returns the latest matching values with the following columns:
| Column | Description |
|---|---|
coin | Velo-normalized coin symbol. |
time | Snapshot timestamp in milliseconds. |
circ | Circulating supply. |
circ_dollars | Circulating market capitalization in dollars. |
fdv | Fully diluted supply. |
fdv_dollars | Fully diluted valuation in dollars. |
Historical market-cap values are not returned by this method.