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

# Get RFQs by Market

> Retrieve all Request for Quote (RFQ) events for a given Kalshi market ticker. Returns every RFQ that was created for this market.

## What you get
- All RFQ events for the market
- RFQ lifecycle events (created, deleted, etc.)
- Creator and quote creator identifiers
- Full JSON message with RFQ details (target cost, timestamps)

## Use cases
- See all RFQ activity on a specific market
- Analyze demand for block trades
- Monitor institutional interest in a market

## Example

- Request: `GET /api/v1/klsi/KXATPMATCH-26FEB13FRIKOR-FRI/rfq`
- Header: `X-API-Key: YOUR_API_KEY`



## OpenAPI

````yaml /openapi-parlays.json get /api/v1/klsi/{klsi_id}/rfq
openapi: 3.0.3
info:
  title: Delphi Markets Parlays API
  description: >-
    Kalshi RFQ (Request for Quote) and MVE (Multi-Value Event) parlay trade
    data, plus bulk data export endpoints.
  version: 1.0.0
  contact:
    name: Delphi Markets
    url: https://delphimarkets.com
servers:
  - url: https://api.delphiterminal.co
    description: Delphi Markets API
security:
  - ApiKeyAuth: []
tags:
  - name: Parlays
    description: >-
      Kalshi RFQ (Request for Quote) and MVE (Multi-Value Event) parlay trade
      data. Includes individual RFQ lookups, parlay trade history, and bulk data
      export in Parquet/JSONL format.
paths:
  /api/v1/klsi/{klsi_id}/rfq:
    get:
      tags:
        - Parlays
      summary: Get RFQs by Market
      description: >-
        Retrieve all Request for Quote (RFQ) events for a given Kalshi market
        ticker. Returns every RFQ that was created for this market.


        ## What you get

        - All RFQ events for the market

        - RFQ lifecycle events (created, deleted, etc.)

        - Creator and quote creator identifiers

        - Full JSON message with RFQ details (target cost, timestamps)


        ## Use cases

        - See all RFQ activity on a specific market

        - Analyze demand for block trades

        - Monitor institutional interest in a market


        ## Example


        - Request: `GET /api/v1/klsi/KXATPMATCH-26FEB13FRIKOR-FRI/rfq`

        - Header: `X-API-Key: YOUR_API_KEY`
      parameters:
        - name: klsi_id
          in: path
          required: true
          schema:
            type: string
          description: Kalshi market ticker
          example: KXATPMATCH-26FEB13FRIKOR-FRI
        - $ref: '#/components/parameters/limit'
      responses:
        '200':
          description: RFQ events for the market
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RFQRow'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    limit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        default: 10
      description: >-
        Maximum number of rows to return (default: 10 in docs, max: 10000). Use
        a higher limit in your code.
  schemas:
    RFQRow:
      type: object
      description: >-
        A Request for Quote (RFQ) event from Kalshi. Each row represents a
        lifecycle event (e.g., rfq_created, rfq_deleted) for a specific RFQ.
      properties:
        type:
          type: string
          description: RFQ event type (e.g., rfq_created, rfq_deleted)
        sid:
          type: integer
          nullable: true
          description: Session ID
        seq:
          type: integer
          nullable: true
          description: Sequence number
        id:
          type: string
          format: uuid
          description: RFQ identifier
        creator_id:
          type: string
          description: Creator identifier (hashed)
        market_ticker:
          type: string
          description: Kalshi market ticker
        event_ticker:
          type: string
          description: Kalshi event ticker
        quote_creator_id:
          type: string
          description: Quote creator identifier
        msg:
          type: string
          description: JSON message containing RFQ details (target_cost, timestamps, etc.)
  responses:
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: 7c883300-dac6-45b5-8d4b-ec6633419325
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your API key (get one from the test-key endpoint above)

````