Type Alias ListingsLatestData

ListingsLatestData: {
    headers?: {
        x-cmc_pro_api_key?: string;
    };
    query?: {
        aux?: string;
        circulating_supply_max?: string;
        circulating_supply_min?: string;
        convert?: string;
        convert_id?: string;
        cryptocurrency_type?: string;
        limit?: string;
        market_cap_max?: string;
        market_cap_min?: string;
        percent_change_24h_max?: string;
        percent_change_24h_min?: string;
        price_max?: string;
        price_min?: string;
        sort?: string;
        sort_dir?: string;
        start?: string;
        tag?: string;
        volume_24h_max?: string;
        volume_24h_min?: string;
    };
}

Type declaration

  • Optionalheaders?: {
        x-cmc_pro_api_key?: string;
    }
    • Optionalx-cmc_pro_api_key?: string

      Provide your API Key here

  • Optionalquery?: {
        aux?: string;
        circulating_supply_max?: string;
        circulating_supply_min?: string;
        convert?: string;
        convert_id?: string;
        cryptocurrency_type?: string;
        limit?: string;
        market_cap_max?: string;
        market_cap_min?: string;
        percent_change_24h_max?: string;
        percent_change_24h_min?: string;
        price_max?: string;
        price_min?: string;
        sort?: string;
        sort_dir?: string;
        start?: string;
        tag?: string;
        volume_24h_max?: string;
        volume_24h_min?: string;
    }
    • Optionalaux?: string

      Optionally specify a comma-separated list of supplemental data fields to return. Pass num_market_pairs,cmc_rank,date_added,tags,platform,max_supply,circulating_supply,total_supply,market_cap_by_total_supply,volume_24h_reported,volume_7d,volume_7d_reported,volume_30d,volume_30d_reported,is_market_cap_included_in_calc to include all auxiliary fields.

    • Optionalcirculating_supply_max?: string

      Optionally specify a threshold of maximum circulating supply to filter results by.

    • Optionalcirculating_supply_min?: string

      Optionally specify a threshold of minimum circulating supply to filter results by.

    • Optionalconvert?: string

      Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object.

    • Optionalconvert_id?: string

      Optionally calculate market quotes by CoinMarketCap ID instead of symbol. This option is identical to convert outside of ID format. Ex: convert_id=1,2781 would replace convert=BTC,USD in your query. This parameter cannot be used when convert is used.

    • Optionalcryptocurrency_type?: string

      The type of cryptocurrency to include.

    • Optionallimit?: string

      Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size.

    • Optionalmarket_cap_max?: string

      Optionally specify a threshold of maximum market cap to filter results by.

    • Optionalmarket_cap_min?: string

      Optionally specify a threshold of minimum market cap to filter results by.

    • Optionalpercent_change_24h_max?: string

      Optionally specify a threshold of maximum 24 hour percent change to filter results by.

    • Optionalpercent_change_24h_min?: string

      Optionally specify a threshold of minimum 24 hour percent change to filter results by.

    • Optionalprice_max?: string

      Optionally specify a threshold of maximum USD price to filter results by.

    • Optionalprice_min?: string

      Optionally specify a threshold of minimum USD price to filter results by.

    • Optionalsort?: string

      What field to sort the list of cryptocurrencies by.

    • Optionalsort_dir?: string

      The direction in which to order cryptocurrencies against the specified sort.

    • Optionalstart?: string

      Optionally offset the start (1-based index) of the paginated list of items to return.

    • Optionaltag?: string

      The tag of cryptocurrency to include.

    • Optionalvolume_24h_max?: string

      Optionally specify a threshold of maximum 24 hour USD volume to filter results by.

    • Optionalvolume_24h_min?: string

      Optionally specify a threshold of minimum 24 hour USD volume to filter results by.