get
https://sandboxapi.legendtrading.com/app/trade
Get the details of a trade by the trade_id 获取某笔交易的细节信息
import requests
headers = {
'Authorization': 'Bearer %s' % api_token,
'Accept':'application/json'
}
data = {
'trade_id':'1b750799-fd4e-4f07-8779-1a4844dc3449'
}
response = requests.get('https://sandboxapi.legendtrading.com/app/trade',json=data, headers=headers)
data = response.json()
print(data)