> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kraken.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quote Request

> Authenticated command to open a new RFQ and request a streaming quote.

<Note>Authenticated channel. Connect to: `wss://wss.prime.kraken.com/ws/v1`</Note>

Command used to request a quote thereby opening a new RFQ. Results of this command will be visible in the Quote stream.

## Request

<Tabs>
  <Tab title="Request Schema">
    <ParamField path="reqid" type="number" required>
      Request ID.
    </ParamField>

    <ParamField path="type" type="string" required>
      Command type. Value: `QuoteRequest`
    </ParamField>

    <ParamField path="data" type="array" required>
      Quote request data array.

      <Expandable title="properties">
        <ParamField path="Symbol" type="string" required>
          Symbol of the security to submit an order on.
        </ParamField>

        <ParamField path="Currency" type="string" required>
          The currency that the quantity is specified in.
        </ParamField>

        <ParamField path="QuoteReqID" type="string" required>
          Unique ID for this request, usually a UUID.
        </ParamField>

        <ParamField path="Side" type="string">
          Optional side for a one sided request. Possible values: `Buy`, `Sell`. Leave blank for a two way quote.
        </ParamField>

        <ParamField path="OrderQty" type="string" required>
          Requested quantity in units of Currency.
        </ParamField>

        <ParamField path="TransactTime" type="string">
          An ISO-8601 UTC string of the form 2019-02-13T05:17:32.000000Z.
        </ParamField>

        <ParamField path="Timestamp" type="string">
          Timestamp of the message.
        </ParamField>

        <ParamField path="Parameters" type="object">
          Optional parameters for the quote request.
        </ParamField>
      </Expandable>
    </ParamField>
  </Tab>

  <Tab title="Example">
    ```json theme={null}
    {
      "reqid": 15,
      "type": "QuoteRequest",
      "data": [
        {
          "QuoteReqID": "8e9540d0-15db-11ec-b5e7-7f4881f01b7d",
          "OrderQty": "0.75",
          "Currency": "BTC",
          "Symbol": "BTC-USD",
          "TransactTime": "2021-09-15T04:15:27.581000Z",
          "Parameters": {}
        }
      ]
    }
    ```
  </Tab>
</Tabs>

## Notes

To generate a `QuoteReqID`, we recommend using a UUID4 or another globally unique identifier. `QuoteReqID` must be unique and with length less than or equal to 36 characters.

Quote responses are delivered on the [Quote](/institutional/api-reference/prime-websocket/quote) stream. To accept a quote, see [New Order Single](/institutional/api-reference/prime-websocket/new-order-single) (`OrdType=RFQ`).
