GET
https://dev.yimmit.com/api/v3/liquidity/trades/:idGet Trade By ID
GET api/v3/liquidity/trades/:id
Get your executed trade by specific trade id and market.
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| market | STRING | NO | Market pair code (e.g., btcusdt, ethbtc) |
| id | INTEGER | NO | Trade transaction id |
Responses
- 200 Successful response
{
"id": 967974,
"price": "118558.45",
"total": "5.9279225",
"avg_price": "118558.45",
"order_id": 3289113,
"amount": "0.00005",
"ord_type": "limit",
"fee_currency": "usdt",
"fee": "0.02371169",
"fee_amount": "0.02371169",
"market": "btcusdt",
"quote_currency": "usdt",
"taker_type": "buy",
"side": "sell",
"ask_order": "btc",
"bid_order": "usdt",
"created_at": "2026-02-03T06:38:06Z"
}