This code uses the web api. It retrieves data for all active, delisted and untracked exchanges! It does not require an 'API' key.
exchange_info(
exchange_list = NULL,
limit = NULL,
requestLimit = 1,
sleep = 0,
finalWait = FALSE
)
List of (active and historically existing) exchanges in a tibble:
CMC exchange id (unique identifier)
Exchange name
Exchange URL slug (unique)
Exchange description according to CMC
Exchange notice (markdown formatted) according to CMC
CMC url of CC logo
Type of exchange
Launch date of this exchange
TBD
TBD
Exchanges maker fee
Exchanges maker fee
Platform id on CMC
Decentralized exchange status
Wallet source status
Activity status on CMC
Tibble of tags and tag categories
Tibble of various resource urls. Gives website, blog, fee, twitter.
Tibble of countries the exchange is active in
Tibble of fiat currencies the exchange trades in
string if NULL retrieve all currently active exchanges (exchange_list()
),
or provide list of exchanges in the exchange_list()
format (e.g. current and/or delisted)
integer Return the top n records, default is all exchanges
limiting the length of request URLs when bundling the api calls
integer (default 60) Seconds to sleep between API requests
to avoid calling the web-api again with another command before 60s are over (TRUE=default)
if (FALSE) {
# return info for the first three exchanges
exchange_info <- exchange_info(limit=10)
}
Run the code above in your browser using DataLab