Orders
Request to retrieve the status of an order. The authentication token token must be send in header X-API-KEY with the request. This token is used to identify the user.
Authorizations
X-API-KEYstringRequired
API key for authentication
Path parameters
idintegerRequired
Responses
200
Order created successfully
application/json
400
Bad request error
application/json
401
Unauthorized error
application/json
404
Order not found error
application/json
get
/api/v1/status/{id}GET /api/v1/status/{id} HTTP/1.1
Host: api.tronex.energy
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"order_id": 123456,
"target": "TVVX6svz6vXGVACeH9jNMk5M3dH5SvcT71",
"duration": "1h",
"volume": 65000,
"summa": 6.5,
"status": "Filled",
"txid": "8a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p7q8r9s0t1u2v3w4x5y6z7a8b9c0d1e2f3"
}Last updated