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

CoinMetricsClient.security_master_assets

coinmetrics.api_client.CoinMetricsClient.security_master_assets(
    assets=None,
    codes=None,
    page_size=None,
    paging_from=None,
    next_page_token=None,
)

Returns all the assets and their metadata in security master.

  • Parameters:

    • assets (Optional *[*Union [str , List [str ] ] ]) -- Comma-separated list of assets to query. Mutually exclusive with codes.

    • codes (Optional *[*Union [str , List [str ] ] ]) -- Comma-separated list of ten-digit alphanumeric identifying codes. Mutually exclusive with assets.

    • 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 assets and their metadata in security master

Last updated