post
https://sandboxapi.legendtrading.com/app/orderbyfiat
用法币购买数字币接口
import requests
headers = {
'Authorization': 'Bearer %s' % api_token,
'Accept':'application/json'
}
data = {
'user_id': 'woshikeaidexiaoxiong'
}
response = requests.get('https://sandboxapi.legendtrading.com/app/userbalances', json=data, headers=headers)
data = response.json()
print(data)