> ## 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 Tickers

> Query for the latest price snapshot, best bid/ask price, and trading volume in the last 24 hours.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/market/tickers
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/tickers:
    get:
      tags:
        - Market
      summary: Get Tickers
      description: >-
        Query for the latest price snapshot, best bid/ask price, and trading
        volume in the last 24 hours.
      operationId: get_tickers
      parameters:
        - name: symbol
          in: query
          required: false
          schema:
            oneOf:
              - type: 'null'
              - $ref: '#/components/schemas/Symbol'
      responses:
        '200':
          description: Tickers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTickersResponse'
        '400':
          description: Bad Request
        '404':
          description: 'Not Found: tickers'
components:
  schemas:
    Symbol:
      type: string
      example: BTCUSDC
    GetTickersResponse:
      type: object
      description: Ticker snapshots response.
      required:
        - list
      properties:
        list:
          type: array
          items:
            $ref: '#/components/schemas/TickerSnapshot'
    TickerSnapshot:
      type: object
      description: >-
        Query for the latest price snapshot, best bid/ask price, and trading
        volume in the last 24 hours.
      required:
        - symbol
        - addr
        - last_price
        - index_price
        - mark_price
        - prev_price_24h
        - high_price_24h
        - low_price_24h
        - prev_price_1h
        - volume_24h
        - turnover_24h
        - open_interest
        - open_interest_value
        - funding_rate
        - next_funding_time
        - best_ask_size
        - best_ask_price
        - best_bid_size
        - best_bid_price
      properties:
        addr:
          type: string
          description: Market address
        best_ask_price:
          type: string
          description: Best ask price
        best_ask_size:
          type: string
          description: Best ask size
        best_bid_price:
          type: string
          description: Best bid price
        best_bid_size:
          type: string
          description: Best bid size
        funding_rate:
          type: string
          description: Funding rate
        high_price_24h:
          type: string
          description: The highest price in the last 24 hours
        index_price:
          type: string
          description: Index price
        last_price:
          type: string
          description: Last traded price
        low_price_24h:
          type: string
          description: The lowest price in the last 24 hours
        mark_price:
          type: string
          description: Mark price
        next_funding_time:
          type: string
          format: date-time
          description: Next funding time (ms)
          example: '1672531200000'
        open_interest:
          type: string
          description: Open interest size
        open_interest_value:
          type: string
          description: Open interest value
        prev_price_1h:
          type: string
          description: Market price 1 hour ago
        prev_price_24h:
          type: string
          description: Market price 24 hours ago
        symbol:
          $ref: '#/components/schemas/Symbol'
          description: Symbol name
        turnover_24h:
          type: string
          description: Turnover for 24h
        volume_24h:
          type: string
          description: Volume for 24h

````