For the complete documentation index, see llms.txt. This page is also available as Markdown.

CoinMetricsClient.security_master_markets

coinmetrics.api_client.CoinMetricsClient.security_master_markets(
    type=None,
    markets=None,
    symbol=None,
    exchange=None,
    base=None,
    quote=None,
    page_size=None,
    paging_from=None,
    next_page_token=None,
)

Returns metadata on all the markets offered (spot, options, futures), sorted alphabetically by market.

  • Parameters:

    • type (Optional [str ]) -- Type of markets.

    • markets (Optional *[*Union [str , List [str ] ] ]) -- List of markets.

    • symbol (Optional [str ]) -- Symbol of derivative markets, full instrument name.

    • exchange (Optional [str ]) -- Unique name of an exchange.

    • base (Optional [str ]) -- Base asset of markets.

    • quote (Optional [str ]) -- Quote asset of markets.

    • page_size (Optional [int ]) -- Number of items per single page of results.

    • paging_from (Optional [str ]) -- Where does the first page start, at the start of the interval or at the end.

    • next_page_token (Optional [str ]) -- Token for receiving the results from the next page of a query. Should not be used directly. To iterate through pages just use next_page_url response field.

Returns:

  • DataCollection

    • List of security master entries.

Last updated