Comment on page
Single crypto details
Get details on a specific crypto currency.
This endpoint allows you to get all details that we have on a specific cryptocurrency 🤖
https://api.koinju.io/cryptos/:id
Parameter | Format | Description |
id
(required) | string | ID of the crypto on which you wish to get details. The IDs can be found here https://api.koinju.io/cryptos |
Variable | Format | Description |
count | number | Number of unique markets related to the cryptocurrency. |
payload | string | Cryptocurrency object (we love nested 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. |
white_paper | string | Link to the cryptocurrency's white paper. |
explorer | string | Links to the cryptocurrency's blockchain explorers. |
source_code | string | Link to the cryptocurrency's source code. |
website | string | Link to the cryptocurrency's website. |
reddit | string | Link to the cryptocurrency's Reddit page. |
twitter | string | Link to the cryptocurrency's Twitter page. |
logo | string | Link to the cryptocurrency's logo. |
about | string | Short description of the cryptocurrency. |
hash_algorithm | string | Hash used in the cryptocurrency's algorithm. |
proof_of_type | string | Proof of type of the cryptocurrency. |
circulating_supply | number | Volume of the cryptocurrency currently circulating. |
total_supply | number | Total volume of the cryptocurrency generated until now. |
max_supply | number | Maximum volume of the cryptocurrency authorized to be generated. |
ath_price | number | The cryptocurrency's highest price registered in all time. |
ath_date | string | The date of the highest price registered. |
market_pairs | string | The list of markets, grouped by exchange, where the cryptocurrency is active. |
200 : OK, Server is happy to server you :-)
Here is you example :
{
"count": 1,
"payload": [
{
"name": "Bitcoin",
"slug": "bitcoin",
"symbol": "BTC",
"id": "btc-bitcoin",
"type": "coin",
"white_paper": "https://bitcoin.org/bitcoin.pdf",
"explorer": [
"http://blockchain.com/explorer",
"https://blockstream.info/",
"https://blockchair.com/bitcoin"
],
"source_code": "https://github.com/bitcoin/bitcoin",
"website": "https://bitcoin.org/",
"reddit": "https://www.reddit.com/r/bitcoin",
"twitter": "https://twitter.com/bitcoincoreorg",
"logo": "https://koinju-icons.s3-eu-west-1.amazonaws.com/cryptos/btc-bitcoin.png",
"about": "Bitcoin is a cryptocurrency and worldwide payment system. It is the first decentralized digital currency, as the system works without a central bank or single administrator.",
"hash_algorithm": "SHA256",
"proof_type": "Proof of Work",
"circulating_supply": 18509494,
"total_supply": 18509494,
"max_supply": 21000000,
"ath_price": 19665.39,
"ath_date": "2017-12-16T00:00:00.000Z",
"market_pairs": {
"bittrex": [
"1ST-BTC",
"ABYSS-BTC"
],
"bitfinex": [
"AGI-BTC",
"AID-BTC"
]
}
}
]
}
Last modified 3yr ago