I'm trying to find how to get futures order book for all tickers, i successfully found how to get active contracts using : https://api-futures.kucoin.com/api/v1/contracts/active
I read the api documentation, it says
Get Order Book
HTTP Request GET /api/v2/order-book
kucoinf = requests.get("https://api-futures.kucoin.com/api/v2/order-book")
e = kucoinf.json()
kucoinf = json_normalize(e['data'])
print (kucoinf)
but it doesn't work https://api-futures.kucoin.com/api/v2/order-book