> For the complete documentation index, see [llms.txt](https://rwaperp-1.gitbook.io/rwaperp-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/trading-and-orders/get-v1-trade-trade-id.md).

# get v1 trade trade id

`GET /v1/trade/{trade_id}`

**Authentication:** RWA

**Rate limit:** 10 requests per second

## Description

Get specific transaction details by `trade_id`.

## Parameters

| Name       | Location | Type   | Required | Description     | Example |
| ---------- | -------- | ------ | -------- | --------------- | ------- |
| `trade_id` | path     | number | Yes      | id of the trade | —       |

## Responses

### HTTP 200

OK

| Field                      | Type    | Required | Description                                                                                                                                                                                |
| -------------------------- | ------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `success`                  | boolean | Yes      | Indicates whether the request was successful. Example: `True`                                                                                                                              |
| `timestamp`                | integer | No       | Server timestamp in milliseconds. Example: `1702989203989`                                                                                                                                 |
| `data`                     | object  | Yes      | —                                                                                                                                                                                          |
| `data.id`                  | number  | No       | Example: `2`                                                                                                                                                                               |
| `data.symbol`              | string  | No       | Example: `PERP_BTC_USDC`                                                                                                                                                                   |
| `data.fee`                 | number  | No       | Total per-execution fee, including `order_enum_fee` when present. Subtract `order_enum_fee` to derive the non-enum trade fee. Example: `0.0001`                                            |
| `data.fee_asset`           | string  | No       | fee. use Base as unit when BUY, use Quote as unit when SELL Example: `USDC`                                                                                                                |
| `data.side`                | string  | No       | Example: `BUY`                                                                                                                                                                             |
| `data.order_id`            | number  | No       | Example: `1`                                                                                                                                                                               |
| `data.executed_price`      | number  | No       | Example: `123`                                                                                                                                                                             |
| `data.executed_quantity`   | number  | No       | Example: `0.05`                                                                                                                                                                            |
| `data.executed_timestamp`  | number  | No       | Example: `1567382401000`                                                                                                                                                                   |
| `data.is_maker`            | number  | No       | Example: `1`                                                                                                                                                                               |
| `data.realized_pnl`        | number  | No       | Example: `0.0`                                                                                                                                                                             |
| `data.match_id`            | number  | No       | Example: `1773456866666462000`                                                                                                                                                             |
| `data.margin_token`        | string  | No       | Example: `USDC`                                                                                                                                                                            |
| `data.margin_change_qty`   | number  | No       | Example: `0`                                                                                                                                                                               |
| `data.margin_mode`         | string  | No       | Example: `CROSS`                                                                                                                                                                           |
| `data.order_enum_fee`      | number  | No       | Additional per-execution fee paid in full to the fee-owning broker, in `fee_asset` units. Exclude this amount from executing-builder and affiliate fee-share calculations. Example: `0.05` |
| `data.order_enum_fee_rate` | number  | No       | Custom trading fee rate applied at execution time. Subtract this value from the trade fee rate to derive the effective rate excluding the custom fee. Example: `0.005`                     |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/trading-and-orders/get-v1-trade-trade-id.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
