# /rfq/quote Get a list of all the quotes where you are the maker Endpoint: GET /rfq/quotes Version: 1.0 ## Query parameters: - `rfqId` (integer) Filter by RFQ ID Example: 12345 - `startTime` (integer) Start time - return Quotes created after this time (unix timestamp in milliseconds) Example: 1753897938346 - `endTime` (integer) End time - return Quotes created before this time (unix timestamp in milliseconds) Example: 1753897938346 - `cursor` (string) The cursor reference from the previous page of results, used to return the next page of results Example: "12345" - `limit` (integer) Limit the number of results to return per page - default , max Example: 10 ## Response 200 fields (application/json): - `totalResults` (integer, required) Total number of results available Example: 3 - `cursor` (integer, required) Cursor for pagination - used to get the next page of results Example: 351 - `results` (array, required) Array of results for the current page - `results.rfqQuoteId` (integer) Unique identifier for the RFQ quote - `results.label` (string) Custom label/identifier for the object - `results.direction` (string) Direction of the trade/leg/quote (buy or sell) Enum: "buy", "sell" - `results.price` (number) Price offered for the quote in the respective quote currency for the as defined by the property for the RFQ. - `results.amount` (number) The amount of asset being quoted for - `results.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" - `results.settlementCredentials` (integer) The of the exchange credentials to use for the settlement of the trade for the chosen . The credentials must be for the same exchange defined in . Your credentials must have read/write access for BlockRFQ and BlockTrade on the settlement venue. - `results.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. - `results.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. - `results.legs.instrumentId` (integer) Instrument ID for the leg - `results.legs.instrumentName` (string) Full instrument name - `results.legs.price` (number) Price of the asset/leg/quote - `results.legs.amount` (number) Amount of the asset being traded/quoted - `results.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. - `results.createdAt` (integer) Timestamp when the quote was created (unix timestamp in milliseconds) ## Response 400 fields (application/json): - `code` (integer) Example: 400 - `message` (string) Example: "Bad Request" - `reason` (array) Example: ["Invalid input"]