> ## 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 MVE Trades (Parlays)

> Retrieve all Multi-Value Event (MVE) parlay trades for a given Kalshi market ticker. MVE trades are multi-leg bets that combine multiple markets.

## What you get
- Trade timestamps and prices
- Taker side and contract count
- MVE collection and event tickers
- Individual leg details (market tickers, event tickers, sides)
- Number of legs in each parlay

## Use cases
- Track parlay trading activity on a market
- Analyze multi-leg bet structures
- Monitor institutional parlay flow

## Example

- Request: `GET /api/v1/klsi/KXMVESPORTSMULTIGAMEEXTENDED-S202613EAE13A377-ED7156B203E/mve_trades`
- Header: `X-API-Key: YOUR_API_KEY`



## OpenAPI

````yaml /openapi-parlays.json get /api/v1/klsi/{klsi_id}/mve_trades
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}/mve_trades:
    get:
      tags:
        - Parlays
      summary: Get MVE Trades (Parlays)
      description: >-
        Retrieve all Multi-Value Event (MVE) parlay trades for a given Kalshi
        market ticker. MVE trades are multi-leg bets that combine multiple
        markets.


        ## What you get

        - Trade timestamps and prices

        - Taker side and contract count

        - MVE collection and event tickers

        - Individual leg details (market tickers, event tickers, sides)

        - Number of legs in each parlay


        ## Use cases

        - Track parlay trading activity on a market

        - Analyze multi-leg bet structures

        - Monitor institutional parlay flow


        ## Example


        - Request: `GET
        /api/v1/klsi/KXMVESPORTSMULTIGAMEEXTENDED-S202613EAE13A377-ED7156B203E/mve_trades`

        - Header: `X-API-Key: YOUR_API_KEY`
      parameters:
        - name: klsi_id
          in: path
          required: true
          schema:
            type: string
          description: Kalshi market ticker
          example: KXMVESPORTSMULTIGAMEEXTENDED-S202613EAE13A377-ED7156B203E
      responses:
        '200':
          description: MVE trades for the market
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MVETrade'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    MVETrade:
      type: object
      description: >-
        A Multi-Value Event (MVE) parlay trade from Kalshi. Each row represents
        a single parlay trade with multiple legs.
      properties:
        trade_ts:
          type: string
          format: date-time
          description: Trade timestamp
        market_ticker:
          type: string
          description: Kalshi market ticker
        yes_price:
          type: integer
          description: YES price in cents
        no_price:
          type: integer
          description: NO price in cents
        count:
          type: integer
          description: Number of contracts traded
        taker_side:
          type: string
          description: Taker side (e.g., yes, no)
        mve_collection_ticker:
          type: string
          description: MVE collection ticker
        event_ticker:
          type: string
          description: Kalshi event ticker
        leg_market_tickers:
          type: array
          items:
            type: string
          description: Market tickers for each leg of the parlay
        leg_event_tickers:
          type: array
          items:
            type: string
          description: Event tickers for each leg of the parlay
        leg_sides:
          type: array
          items:
            type: string
          description: Side (yes/no) for each leg of the parlay
        num_legs:
          type: integer
          description: Number of legs in the parlay
  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)

````