# /rfq/trade Accept a quote and trade the RFQ Endpoint: POST /rfq/trade Version: 1.0 ## Request fields (application/json): - `rfqQuoteId` (integer, required) The of the quote to accept and trade against ## Response 200 fields (application/json): - `rfqTradeId` (integer) Unique identifier for the RFQ trade Only returned if the RFQ has been traded and you are the or in the trade. Example: 12345 - `rfqId` (integer) Unique identifier for the RFQ Example: 12345 - `trades` (array) - `trades.direction` (string) Direction of the trade (buy or sell) Only returned if the RFQ has been traded and you are the or in the trade. Enum: "buy", "sell" - `trades.price` (number) Price paid in the RFQ's quote currency Only returned if the RFQ has been traded and you are the or in the trade. Example: 0.02 - `trades.amount` (number) Amount traded in the RFQ's base currency (e.g. BTC) Only returned if the RFQ has been traded and you are the or in the trade. Example: 12 - `trades.instrumentName` (string) Full instrument name Example: "BTC-8AUG25-110000-C" - `trades.exchangeTradeId` (string) Unique identifier for the trade on the exchange Only returned if the RFQ has been traded and you are the or in the trade. Example: "BLOCK-792841" - `trades.createdAt` (integer) Timestamp when the trade was executed (unix timestamp in milliseconds) Only returned if the RFQ has been traded and you are the or in the trade. Example: 1756802862567 ## Response 400 fields (application/json): - `code` (integer) Example: 400 - `message` (string) Example: "Bad Request" - `reason` (array) Example: ["Invalid input"] ## Response 404 fields (application/json): - `code` (integer) Example: 404 - `message` (string) Example: "Not Found" ## Response 420 fields (application/json): - `code` (integer) Example: 420 - `message` (string) Example: "An error occurred at the exchange/settlement venue" - `exchangeError` (object) The error response returned by the exchange/settlement venue. The content will depend on the exchange/settlement venue and will be a direct pass through of the error response.