# Get trade **GET /api/v1/trades/{transactionId}** Returns a single trade belonging to the authenticated API key owner. ## Servers - https://api.lumetrade.com: https://api.lumetrade.com () ## Parameters ### Headers - **X-API-KEY** (string) Public API key issued from the Lumetrade API key management flow. - **X-API-SECRET** (string) API secret paired with the public API key. ### Path parameters - **transactionId** (string) Trade transaction id returned by the trade list endpoint. ## Responses ### 200 Trade returned successfully #### Body: application/json (object) - **fromCurrency** (string) Currency sold/sent. - **toCurrency** (string) Currency bought/received. - **fromAmount** (number) Amount sold/sent. - **toAmount** (number) Amount bought/received. - **rate** (number) Executed trade rate. - **isRateInverted** (boolean) Whether the displayed rate is inverted. - **isRfq** (boolean) Whether this trade was created from RFQ. - **status** (string) Trade status. - **transactionId** (string) Transaction id for trade lookups. - **createdAt** (string(date-time)) Trade creation timestamp. - **completedAt** (string(date-time)) Completion timestamp. - **fills** (array[object]) Trade fills. Omitted from RFQ quote confirmation responses. ### 404 Trade was not found for the authenticated user #### Body: application/json (object) - **fromCurrency** (string) Currency sold/sent. - **toCurrency** (string) Currency bought/received. - **fromAmount** (number) Amount sold/sent. - **toAmount** (number) Amount bought/received. - **rate** (number) Executed trade rate. - **isRateInverted** (boolean) Whether the displayed rate is inverted. - **isRfq** (boolean) Whether this trade was created from RFQ. - **status** (string) Trade status. - **transactionId** (string) Transaction id for trade lookups. - **createdAt** (string(date-time)) Trade creation timestamp. - **completedAt** (string(date-time)) Completion timestamp. - **fills** (array[object]) Trade fills. Omitted from RFQ quote confirmation responses. [Powered by Bump.sh](https://bump.sh)