post
https://sandboxapi.legendtrading.com/app/trade
Execute a trade on behalf a user of your platform 执行一笔交易
import requests
headers = {
'Authorization': 'Bearer %s' % api_token,
'Accept':'application/json'
}
response = requests.get('https://sandboxapi.legendtrading.com/app/pairs', headers=headers)
data = response.json()
print(data)