# /rfq/{id}/quote Get quotes for a specific RFQ where you are the taker Endpoint: GET /rfq/{id}/quote Version: 1.0 ## Path parameters: - `id` (integer, required) of the RFQ to fetch/perform operation on ## Response 200 fields (application/json): - `rfqId` (integer) Unique identifier for the RFQ - `bids` (array) Bid quotes - `bids.rfqQuoteId` (integer) Unique identifier for the RFQ quote - `bids.price` (number) Price offered for the quote in the respective quote currency for the as defined by the property for the RFQ. - `bids.amount` (number) The amount of asset being quoted for - `bids.settlementOption` (string) The chosen settlement option for the quote. Currently and are supported. You can only send a value that matches one of the available for the RFQ. Enum: "BULL", "DBT" - `bids.quoteCurrency` (string) The quote currency for the quote, as determined by the chosen and the RFQ's mapping. This is the currency in which the quote price is denominated. - `bids.makers` (array) Array of makers - `bids.legs` (array) The breakdown of the quotes against each leg Only displayed for quotes received via FIG directly. Any quotes from third party exchanges will not include the breakdown. - `bids.legs.instrumentId` (integer) Instrument ID for the leg - `bids.legs.instrumentName` (string) Full instrument name - `bids.legs.direction` (string) Direction of the trade/leg/quote (buy or sell) Enum: "buy", "sell" - `bids.legs.price` (number) Price of the asset/leg/quote - `bids.legs.amount` (number) Amount of the asset being traded/quoted - `bids.hedge` (object) The hedge for the RFQ quote Only displayed for quotes received via FIG directly. Any quotes from third party exchanges will not include the hedge. - `bids.createdAt` (integer) Timestamp when the quote was created (unix timestamp in milliseconds) - `asks` (array) Ask quotes ## Response 400 fields (application/json): - `code` (integer) Example: 400 - `message` (string) Example: "Bad Request" - `reason` (array) Example: ["Invalid input"]