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

# Get Order Price Limit

> Query for order price limit parameters.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/market/price-limit
openapi: 3.1.0
info:
  title: ekiden-gateway
  description: >-
    API Gateway and WebSocket proxy based on Axum and Utoipa, handling auth,
    rate limiting, and connection buffering.
  license:
    name: ''
  version: 0.1.1
servers:
  - url: https://api.ekiden.fi/
    description: Production
  - url: https://api.staging.ekiden.fi/
    description: Staging
  - url: https://api.dev.ekiden.fi/
    description: Development
  - url: http://localhost:4020/
    description: Local
security: []
paths:
  /api/v1/market/price-limit:
    get:
      tags:
        - Market
      summary: Get Order Price Limit
      description: Query for order price limit parameters.
      operationId: get_order_price_limit
      parameters:
        - name: symbol
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/Symbol'
      responses:
        '200':
          description: Order price limit
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderPriceLimit'
components:
  schemas:
    Symbol:
      type: string
      example: BTCUSDC
    OrderPriceLimit:
      type: object
      description: Order price limits for a given trading symbol.
      required:
        - symbol
        - buy_limit
        - sell_limit
        - ts
      properties:
        buy_limit:
          type: string
          description: Highest Bid Price
        sell_limit:
          type: string
          description: Lowest Ask Price
        symbol:
          $ref: '#/components/schemas/Symbol'
        ts:
          type: string
          format: date-time
          example: '1672531200000'

````