Crypto details
Get the list of all the cryptocurrencies available with exchanges we handle
This endpoint allows you to get the list of all currencies made available by at least one market of one of the exchange we're connected to 🤖
https://api.koinju.io/cryptos
Variable | Format | Description |
count | number | Number of cryptocurrencies. |
payload | string | List of the cryptocurrency objects (we love nested incepted inception). |
payload
variablesVariable | Format | Description |
name | string | Name of the cryptocurrency. |
slug | string | Slug of the cryptocurrency. |
symbol | string | Symbol of the cryptocurrency. |
id | string | ID of the cryptocurrency. |
type | string | Type of the cryptocurrency. |
logo | string | Link to the cryptocurrency's logo. |
ath_price | number | The highest price registered in all time. |
200 : OK
Server is happy to server you :-)
Here is an example :
{
"count": 3,
"payload": [
{
"id": "btc-bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"slug": "bitcoin",
"type": "coin",
"logo": "https://koinju-icons.s3-eu-west-1.amazonaws.com/cryptos/btc-bitcoin.png",
"ath_price": 19665.39
},
{
"id": "eth-ethereum",
"symbol": "ETH",
"name": "Ethereum",
"slug": "ethereum",
"type": "coin",
"logo": "https://koinju-icons.s3-eu-west-1.amazonaws.com/cryptos/eth-ethereum.png",
"ath_price": 1448.18
},
{
"id": "usdt-tether",
"symbol": "USDT",
"name": "Tether",
"slug": "tether",
"type": "token",
"logo": "https://koinju-icons.s3-eu-west-1.amazonaws.com/cryptos/usdt-tether.png",
"ath_price": 1.32
}
]
}