List coins
Returns basic information about cryptocurrencies on coinpaprika.com:
- identity (
id,name,symbol) - ranking (
rank) - activity status (
is_active) - type of cryptocurrency (
type) -coinortoken - information whether the currency is new (
is_new) - true if the currency was added within the last 5 days
Available on the following API plans:
- Free
- Starter
- Pro
- Business
- Enterprise
Update interval: Every 1 minute.
GET
CLI
Response
successful operation
ID of coin on coinpaprika.com
Example:
"btc-bitcoin"
Name of the cryptocurrency
Example:
"Bitcoin"
Symbol of the cryptocurrency
Example:
"BTC"
Current ranking of the cryptocurrency. If is_active is false the rank is 0
Example:
1
Flag indicating if the currency was added within the last 5 days
Example:
false
Flag indicating if the currency is active, which means that we can calculate the current price and volume
Example:
true
Type of the cryptocurrency. Currently supported values are coin and token
Example:
"coin"
Previous
Get coin by IDReturns detailed descriptive information about a single coin, without price or volume data. For price data, check the [/tickers](#operation/getTickers) and [/tickers/{coin_id}](#operation/getTickersById) endpoints.
**Available on the following API plans:**
- Free
- Starter
- Pro
- Business
- Enterprise
**Update interval:** Every 1 minute.
Next
CLI