Implementation of Bitmex API connectors in Flask
pip install -r requirements.txt
Need API Key and API Secret from Bitmex Test
- Add
api_key
andapi_secret
in app
Request | Endpoint | Details |
---|---|---|
GET |
http://127.0.0.1:5000/data/order |
Get Orders Data |
GET |
http://127.0.0.1:5000/data/instrument |
Get Instrument Data |
GET |
http://127.0.0.1:5000/data/position |
Get Position Data |
GET |
http://127.0.0.1:5000/data/quote |
Get Quote Data |
- To see route list from cli
flask routes
python app.py