Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 916 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 916 Bytes

Bitmex API Helper for Python Flask

Implementation of Bitmex API connectors in Flask

Create virtual environment and install requirements

pip install -r requirements.txt

Need API Key and API Secret from Bitmex Test

  • Add api_key and api_secret in app

List of Implemented Routes

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

Lets run the App

python app.py