GET
/
v3
/
trade
/
transaction
cURL
curl --request GET \
  --url https://api.woox.io/v3/trade/transaction \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-signature: <x-api-signature>' \
  --header 'x-api-timestamp: <x-api-timestamp>'
{
  "success": true,
  "timestamp": 123,
  "data": {
    "id": 123,
    "symbol": "<string>",
    "fee": 123,
    "feeAsset": "<string>",
    "side": "<string>",
    "orderId": 123,
    "executedPrice": "<string>",
    "executedQuantity": "<string>",
    "isMaker": 123,
    "realizedPnl": "<string>",
    "executedTimestamp": 123,
    "isMatchRpi": false
  }
}
Limit: 10 requests per 1 second
Get specific transaction detail by tradeId that’s executed in the last 3 months.

Headers

x-api-key
string
required
Example:

"abcdef123456"

x-api-signature
string
required
Example:

"signaturestring"

x-api-timestamp
string
required
Example:

"1718943200000"

Query Parameters

tradeId
integer
default:1

Id of the transaction; Either tradeId or clientOrderId is required. If both are passed, tradeId will be used.

Response

200 - application/json
success
boolean

true

timestamp
integer

timestamp

data
object