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

# Get Prediction Market Details

> Get full details for a specific prediction market, including outcomes, stats, and metadata.

<Warning>**Alpha** — This endpoint is part of the Prediction Markets API, currently in early access. May change without notice.</Warning>


## OpenAPI

````yaml GET /2/pm/market/details
openapi: 3.0.0
info:
  version: 1.0.0
  title: Mobula Prediction Markets API
  description: >-
    Documentation of the Mobula Prediction Markets API.


    The PM API is currently served from a dedicated host:
    `pm-api-prod-eu.mobula.io`.

    All endpoints below require an API key (same key as the main Mobula API).


    Parameter names below are the **canonical names enforced by the API

    controllers** (Zod-validated). Following the wrong name (e.g. `?market=...`

    instead of `?platform=...&marketId=...`) returns `HTTP 400`.
servers:
  - url: https://pm-api-prod-eu.mobula.io/api/
    description: PM Production API (requires API key)
security: []
tags:
  - name: V2 - PM Market
    description: Prediction market data — details, prices, order book, trades, OHLCV
  - name: V2 - PM Discovery
    description: Search, trending, categories, live markets
  - name: V2 - PM Wallet
    description: Wallet prediction-market positions, balances, PnL, activity, status
paths:
  /2/pm/market/details:
    get:
      tags:
        - V2 - PM Market
      summary: Get Prediction Market Details
      description: >
        Get full details for a specific prediction market, including outcomes,
        stats, and metadata.


        Required params: `platform` + `marketId`. The market URL slug is **not**
        a valid id —

        use the CTF conditionId returned by `/2/pm/trending` or `/2/pm/search`.
      parameters:
        - $ref: '#/components/parameters/Platform'
        - $ref: '#/components/parameters/MarketId'
      responses:
        '200':
          description: Market details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
components:
  parameters:
    Platform:
      name: platform
      in: query
      required: true
      description: >-
        Prediction market platform. Today only `polymarket` is supported; any
        other value returns 400.
      schema:
        type: string
        enum:
          - polymarket
        example: polymarket
    MarketId:
      name: marketId
      in: query
      required: true
      description: CTF conditionId — 0x-prefixed 32-byte hex string. **NOT** the URL slug.
      schema:
        type: string
        pattern: ^0x[0-9a-fA-F]{64}$
        example: '0xd86a816093fcd0a0e1ca440bc5ce199bd3c5a8d6139e044b076958164f8c5423'

````