headers = "X-ORION-APIKEY": api_key, "X-ORION-TIMESTAMP": timestamp, "X-ORION-SIGNATURE": signature
import requests import time import hmac import hashlib api_key = "YOUR_API_KEY" api_secret = "YOUR_API_SECRET" Orion Api Key
timestamp = str(int(time.time() * 1000)) path = "/v1/ticker/BTCUSDT" message = timestamp + "GET" + path headers = "X-ORION-APIKEY": api_key