CoinmarketcapAPI.getMap

Returns a paginated list of all cryptocurrencies by CoinMarketCap ID

@param {string=} active or inactive coins @param {int=} Optionally offset the start (1-based index) of the paginated list of items to return. @param {int=} Optionally specify the number of results to return @param {string=|string[]} Optionally pass a comma-separated list of cryptocurrency symbols to return CoinMarketCap IDs for. If this option is passed, other options will be ignored.

@example getMap(); getMap("active", 1, 10); getMap("active", 1, 1, ["BTC", "ETH"]);

  1. auto getMap(string status, int start, int limit, string symbols)
    class CoinmarketcapAPI
    getMap
    (
    T = string
    )
    (
    in string status = "active"
    ,
    in int start = 1
    ,
    in int limit = 100
    ,
    in string symbols = ""
    )
  2. auto getMap(string status, int start, int limit, string[] symbols)

Meta