I'm not sure if this is a problem with my coding or maybe I should rather ask CoinAPI this question directly. If I want to get some minute data from a coin, some data appears to be simply missing. In the picture with the output of my code you can see, that the data for the minute at 2018-05-31T23:42 is missing. Do you know a better site with historical crypto minute data? This is my code:
import requests
symbol_id = 'BINANCE_SPOT_IOTA_USDT'
period_id = '1MIN'
limit = '5'
time_start='2018-05-31T23:40:00'
headers = {'X-CoinAPI-Key' : 'My CoinAPI-Key'}
response = requests.get(
f'https://rest.coinapi.io/v1/ohlcv/{symbol_id}/history?period_id={period_id}&time_start={time_start}&limit={limit}',
headers=headers)
print(response.text)
Thank you!
CoinAPI provides an additional parameter called
period_id
which accepts the unitssecond/minute/hour/day/month/year
. Data can be requested by the period.