General aggregated tickers
Get all the lastest tickers of every crypto currency.
This endpoint allows you to obtain the list of all tickers available for every cryptocurrencies 🤖
https://api.koinju.io/tickers/cryptos/:timeframe
Variable | Type | Description |
timeframe (required) | string | Timeframe name (15s or 1d, default is 15s) |
Variable | Format | Description |
count | number | The number of tickers. |
payload | object | The list of ticker objects. |
payload
variablesVariable | Format | Description |
id | string | ID of the cryptocurrency. |
base | string | Symbol of the cryptocurrency. |
quote | string | Symbol of the currency in which calculated values are expressed. |
timeframe | string | Timeframe name. |
price | object | Average price value of the cryptocurrency in the last 24 hours. |
volume | object | Total volume exchanged in the last 24 hours. |
marketCap | object | Market cap of the cryptocurrency. |
markets | object | List of the markets considered in the ticker calculation. |
chart | string | Link to the price variation chart of the cryptocurrency. |
timestamp | number | Timestamp of the ticker. |
hash | string | Hash of the ticker. |
price
variablesVariable | Format | Description |
value | string | Average price of the cryptocurrency. |
vwap | string | Volume weighted average price of the cryptocurrency. |
twap | string | Time weighted average price of the cryptocurrency. |
change_1h | string | Variation between the current price and the price from 1 hour ago. |
change_24h | string | Variation between the current price and the price from 24 hours ago |
percent_change_1h | string | Percentage of the variation between the current price and the price from 1 hour ago. |
percent_change_24h | string | Percentage of the variation between the current price and the price from 24 hours ago. |
volume
variablesVariable | Format | Description |
value | string | Volume exchanged within the last 24 hours. |
change_1h | string | Variation between the current volume and the volume from 1 hour ago. |
change_24h | string | Variation between the current volume and the volume from 24 hours ago |
percent_change_1h | string | Percentage of the variation between the current volume and the volume from 1 hour ago. |
percent_change_24h | string | Percentage of the variation between the current volume and the volume from 24 hours ago. |
marketCap
variablesVariable | Format | Description |
value | string | Market cap value. |
change_1h | string | Variation between the current market cap and the market cap from 1 hour ago. |
change_24h | string | Variation between the current market cap and the market cap from 24 hours ago |
percent_change_1h | string | Percentage of the variation between the current market cap and the market cap from 1 hour ago. |
percent_change_24h | string | Percentage of the variation between the current market cap and the market cap from 24 hours ago. |
markets
variablesVariable | Format | Description |
list | object | List of the markets, grouped by exchange, considered in the calculations. |
number_of_trades | object | Number of trades considered in the calculations. |
number_of_trades
variablesVariable | Format | Description |
value | string | Number of trades considered in the calculations. |
change_1h | string | Variation between the current number of trades and the number of trades from 1 hour ago. |
change_24h | string | Variation between the current number of trades and the number of trades from 24 hours ago |
percent_change_1h | string | Percentage of the variation between the current number of trades and the number of trades from 1 hour ago. |
percent_change_24h | string | Percentage of the variation between the current number of trades and the number of trades from 24 hours ago. |
200 : OK, Server is happy to server you :-)
Here is you example :
{
"count":1,
"payload":[
{
"name":"Ethereum",
"symbol":"ETH",
"id":"eth-ethereum",
"quote":"usd",
"timeframe":"15s",
"price":{
"value":"680517.4201055672",
"vwap":"682371.3385157946",
"twap":"274633.6427850428",
"change_1h":"-93.6217038914986",
"change_24h":"-450.6007322081227",
"percent_change_1h":"56.72229097165149",
"percent_change_24h":"85.33140956029905"
},
"volume":{
"value":"54720.97534610318",
"change_1h":"1091.1954342040092",
"change_24h":"-979.2027407992405",
"percent_change_1h":"72.76006102306005",
"percent_change_24h":"-2.385482240368675"
},
"marketCap":{
"value":"933644.4727949814",
"change_1h":"-94.43232887889997",
"change_24h":"-819.0692772697607",
"percent_change_1h":"-20.645836745710255",
"percent_change_24h":"70.24029418202274"
},
"markets":{
"list":{
"kraken":[
"ADA-ETH",
"ALGO-ETH",
"ATOM-ETH",
"BAT-ETH",
"BCH-ETH",
"EOS-ETH",
"ETH-AUD",
"ETH-CHF",
"ETH-DAI",
"ETH-USDC",
"ETH-USDT",
"GNO-ETH",
"XTZ-ETH"
],
"coinbase":[
"ETH-BTC",
"ETH-USD",
"ETH-EUR",
"ETH-GBP",
"LINK-ETH",
"ETH-DAI",
"BAT-ETH",
"ETH-USDC"
],
"bitfinex":[
"ANT-ETH",
"ATOM-ETH",
"BAT-ETH",
"CND-ETH",
"DAI-ETH",
"DATA-ETH",
"DGX-ETH",
"EDO-ETH",
"EOS-ETH",
"ETH-BTC",
"ETH-EUR",
"ETH-GBP",
"ETH-JPY",
"ETH-USD",
"ETH-USDT",
"ETP-ETH",
"FUN-ETH",
"ZRX-ETH"
],
"bittrex":[
"ETH-BTC",
"ETC-ETH",
"GNT-ETH",
"REP-ETH",
"ETH-USDT",
"GNO-ETH",
"ANT-ETH",
"BAT-ETH"
],
"bitstamp":[
"ETH-USD",
"ETH-EUR",
"ETH-BTC",
"ETH-GBP",
"ETH-PAX"
]
},
"number_of_trades":{
"value": "1870",
"change_1h": "1349",
"change_24H": "1866",
"percent_change_1h": "258.925143953934740883",
"percent_change_24h": "46650"
}
},
"charts":"https://koinju-charts-preprod.s3-eu-west-1.amazonaws.com/eth-ethereum.png",
"timestamp":1595340515849000000,
"hash":"148965843feorgh459y854"
}
]
}