/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)
Query Params
string

It should be a uuid, such as 44531d58-056e-4d96-86c2-4fe3235cb61a

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json