---
title: "Get RFQs"
method: GET
path: "/communications/rfqs"
tags: ["communications"]
---

# Get RFQs

`GET /communications/rfqs`

Endpoint for getting RFQs

## Query parameters

- `cursor` string
- `event_ticker` string
- `market_ticker` string
- `subaccount` integer
- `limit` integer
- `status` string
- `creator_user_id` string
- `user_filter` 'self' — Omit or leave empty to return all results. Use `self` to filter by the authenticated user.

## Response `200`

RFQs retrieved successfully

- GetRFQsResponse
  - `rfqs` RFQ[], required — List of RFQs matching the query criteria
    - `id` string, required — Unique identifier for the RFQ
    - `creator_id` string, required — Public communications ID of the RFQ creator.
    - `market_ticker` string, required — The ticker of the market this RFQ is for
    - `contracts_fp` string, required — Fixed-point contract count string (2 decimals, e.g., "10.00"; referred to as "fp" in field names). Requests accept 0-2 decimal places (e.g., "10", "10.0", "10.00"); responses always emit 2 decimals. Fractional contract values (e.g., "2.50") are supported; the minimum granularity is 0.01 contracts.
    - `target_cost_dollars` string — Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.
    - `status` 'open' | 'closed', required — Current status of the RFQ (open, closed)
    - `created_ts` string, date-time, required — Timestamp when the RFQ was created
    - `mve_collection_ticker` string — Ticker of the MVE collection this market belongs to
    - `mve_selected_legs` MveSelectedLeg[] — Selected legs for the MVE collection
      - `event_ticker` string — Unique identifier for the selected event
      - `market_ticker` string — Unique identifier for the selected market
      - `side` string — The side of the selected market
      - `yes_settlement_value_dollars` string — Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.
    - `rest_remainder` boolean — Whether to rest the remainder of the RFQ after execution
    - `cancellation_reason` string — Reason for RFQ cancellation if cancelled
    - `creator_user_id` string — User ID of the RFQ creator (private field)
    - `creator_subaccount` integer — Subaccount number of the RFQ creator (visible when the caller is the RFQ creator)
    - `cancelled_ts` string, date-time — Timestamp when the RFQ was cancelled
    - `updated_ts` string, date-time — Timestamp when the RFQ was last updated
  - `cursor` string — Cursor for pagination to get the next page of results

## Other responses

- `401` — Unauthorized - authentication required
- `500` — Internal server error

---

[API](https://skmtc.net/kalshi/apis/kalshi-trade-api-manual-endpoints.md) · [All operations](https://skmtc.net/kalshi/apis/kalshi-trade-api-manual-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kalshi/kalshi-trade-api-manual-endpoints/revisions/6aec27d55fba/schema)
