CoinmarketcapAPI.getList

Get a paginated list of all cryptocurrencies with latest market data

@param {int=} Return results from rank start and above @param {int=} Only returns limit number of results [1..5000] @param {string[]=} Return info in terms of another currency @param {string=} Sort results by the options at https://pro.coinmarketcap.com/api/v1#operation/getV1CryptocurrencyListingsLatest @param {string=} Direction in which to order cryptocurrencies ("asc" | "desc") @param {string=} Type of cryptocurrency to include ("all" | "coins" | "tokens")

@example getList(1, 10) getList(1, 10, ["EUR", "USD"])

class CoinmarketcapAPI
getList
(
T = string
)
(
in int start = 1
,
in int limit = 100
,
in string[] convert = ["USD"]
,
in string sort = "market_cap"
,
in string sortDir = ""
,
in string cryptocurrencyType = "all"
)

Meta