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

# Get Market

> Retrieve details for a specific prediction market by its ticker symbol, including current prices, volume, and market rules.



## OpenAPI

````yaml openapi.json get /v1/prediction-market/markets/{ticker}
openapi: 3.0.0
info:
  title: Swaps API
  description: The Swaps API documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://swap-api.flux.fun
    description: Production
  - url: http://localhost:3000
    description: Development
security: []
tags: []
paths:
  /v1/prediction-market/markets/{ticker}:
    get:
      tags:
        - Prediction Markets & Portfolio
      summary: Get Market
      description: >-
        Retrieve details for a specific prediction market by its ticker symbol,
        including current prices, volume, and market rules.
      operationId: PredictionMarketsController_getMarket
      parameters:
        - name: ticker
          required: true
          in: path
          description: The market ticker symbol
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketResponseDto'
      security:
        - api-key: []
components:
  schemas:
    GetMarketResponseDto:
      type: object
      properties:
        market:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/MarketDetailDto'
      required:
        - market
    MarketDetailDto:
      type: object
      properties:
        ticker:
          type: string
          example: KXBTC-24DEC31-T100K
        eventTicker:
          type: string
          example: KXBTC-24DEC31
        title:
          type: string
          example: Will Bitcoin reach $100,000 by Dec 31?
        subtitle:
          type: string
          example: Bitcoin price prediction market
        status:
          type: string
          example: open
        marketType:
          type: string
          example: binary
        yesBid:
          type: number
          example: 45
        yesAsk:
          type: number
          example: 47
        noBid:
          type: number
          example: 53
        noAsk:
          type: number
          example: 55
        lastPrice:
          type: number
          example: 46
        liquidity:
          type: number
          example: 50000
        rulesPrimary:
          type: string
          example: This market resolves to Yes if Bitcoin trades at or above $100,000
      required:
        - ticker
        - eventTicker
        - title
        - subtitle
        - status
        - marketType
        - yesBid
        - yesAsk
        - noBid
        - noAsk
        - lastPrice
        - liquidity
        - rulesPrimary
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key

````