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

# Get Order Fills

> Returns the fills recorded for a Kalshi order.



## OpenAPI

````yaml /openapi/v1.json get /v1/kalshi/orders/{orderId}/fills
openapi: 3.0.0
info:
  title: ParlayX API
  version: 1.0.0
  description: Aggregated prediction-market trading API
servers:
  - url: https://api.parlayx.com
security: []
tags:
  - name: Authentication
    description: Confirm your signing and read the server clock.
  - name: Discovery
    description: Browse sports, competitions, events, and markets.
  - name: Polymarket
    description: Submit and manage orders on Polymarket outcomes.
  - name: Kalshi
    description: Submit and manage orders on Kalshi markets.
paths:
  /v1/kalshi/orders/{orderId}/fills:
    get:
      tags:
        - Kalshi
      summary: Get Order Fills
      description: Returns the fills recorded for a Kalshi order.
      operationId: getKalshiOrderFills
      parameters:
        - name: PX-Key-Id
          in: header
          required: true
          schema:
            type: string
          description: The key id issued for your signing keypair.
        - name: PX-Timestamp
          in: header
          required: true
          schema:
            type: string
          description: >-
            Unix seconds at signing, valid within 30 seconds of the server
            clock.
        - name: PX-Signature
          in: header
          required: true
          schema:
            type: string
          description: Ed25519 signature of the request
        - name: PX-Content-Sha256
          in: header
          required: true
          schema:
            type: string
          description: >-
            Hex SHA-256 of the request body, or the SHA-256 of the empty string
            when there is no body.
        - schema:
            type: string
            format: uuid
            description: Issued order id.
            example: 3f8b2c9a-2d18-4f7e-9c2a-1b6e1f0c8a4d
          required: true
          name: orderId
          in: path
      responses:
        '200':
          description: Fills found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetKalshiOrderFillsResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Order not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    GetKalshiOrderFillsResponse:
      type: object
      properties:
        fills:
          type: array
          items:
            $ref: '#/components/schemas/KalshiFillView'
          description: Fills recorded for the order, oldest first.
      required:
        - fills
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              $ref: '#/components/schemas/ApiErrorCode'
            message:
              type: string
              description: Plain-text explanation of the error.
            orderId:
              type: string
              format: uuid
              description: >-
                The affected order, present only on
                ORDER_RECONCILIATION_REQUIRED; read it back to determine whether
                it reached the venue.
          required:
            - code
            - message
      required:
        - error
    KalshiFillView:
      type: object
      properties:
        fillId:
          type: string
          format: uuid
          description: Fill id.
          example: 7c1e4b2a-9d3f-4e8c-a1b2-3c4d5e6f7a8b
        orderId:
          type: string
          format: uuid
          description: Issued order id.
          example: 3f8b2c9a-2d18-4f7e-9c2a-1b6e1f0c8a4d
        venueFillId:
          type: string
          description: Kalshi trade id for this fill.
          example: e2b7c9a1-4f6d-4a2e-9b3c-1d2e3f4a5b6c
        count:
          type: integer
          description: Contracts filled.
          example: 4
        priceCents:
          type: integer
          description: >-
            Fill price in whole cents from 1 to 99, in the traded side's own
            frame.
          example: 37
        feeCents:
          type: integer
          description: >-
            Fee charged, rounded to the nearest whole cent, negative for a
            rebate.
          example: 6
        feeUsd:
          type: string
          nullable: true
          description: >-
            Fee charged in dollars, exact to the granularity the venue charges,
            negative for a rebate, or null if the exact amount is unavailable.
          example: '0.063000'
        occurredAt:
          type: string
          description: Time the fill occurred at the venue, in ISO-8601.
          example: '2026-07-26T12:03:00.000Z'
      required:
        - fillId
        - orderId
        - venueFillId
        - count
        - priceCents
        - feeCents
        - feeUsd
        - occurredAt
    ApiErrorCode:
      type: string
      enum:
        - INVALID_REQUEST
        - NOT_FOUND
        - INSUFFICIENT_BALANCE
        - IDEMPOTENCY_CONFLICT
        - ORDER_NOT_CANCELLABLE
        - ORDER_RECONCILIATION_REQUIRED
        - INTERNAL_ERROR
      description: Stable identifier for the error category.

````