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

# Get market settlement

> Retrieve the settlement price for a specific market



## OpenAPI

````yaml api-reference/oapi-schemas/market-schema.json get /v1/markets/{slug}/settlement
openapi: 3.0.1
info:
  title: Market API
  description: Market data and information endpoints
  version: v1.0.0
servers:
  - url: https://api.polymarket.us
security: []
tags:
  - name: Markets
paths:
  /v1/markets/{slug}/settlement:
    get:
      tags:
        - Markets
      summary: Get market settlement
      description: Retrieve the settlement price for a specific market
      operationId: MarketService_GetMarketSettlement
      parameters:
        - name: slug
          in: path
          description: Market slug
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Market settlement details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketSettlementResponse'
        '404':
          description: Market not found or not settled
        '500':
          description: Internal server error
components:
  schemas:
    GetMarketSettlementResponse:
      type: object
      properties:
        slug:
          type: string
          description: Market slug
        settlement:
          type: number
          format: decimal
          description: Settlement price

````