Yes, CoinAPI Provides the Current Order Book by Symbol ID
CoinAPI offers a feature in its REST API that allows users to access the current order book for a specific cryptocurrency symbol.
How to Access the Order Book Data
To access this data, users need to make a GET request to the CoinAPI REST API. The request format is:
curl -L -X GET 'https://rest.coinapi.io/v1/orderbooks3/:symbol_id/current' \
-H 'Accept: text/plain' \
-H 'X-CoinAPI-Key: <API_KEY_VALUE>'
Replace :symbol_id
with the actual symbol ID of the cryptocurrency and include your API key in the request header.
Comments
0 comments
Article is closed for comments.