Skip to content
Velo

.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:

ColumnDescription
coinVelo-normalized coin symbol.
timeSnapshot timestamp in milliseconds.
circCirculating supply.
circ_dollarsCirculating market capitalization in dollars.
fdvFully diluted supply.
fdv_dollarsFully diluted valuation in dollars.

Historical market-cap values are not returned by this method.