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

# Marchés outright avec contestants & cotes

> Marchés outright/futures regroupés, avec la liste des contestants et leurs cotes (odds + true odds). Filtrable par sport et nombre minimum de contestants.



## OpenAPI

````yaml /api-reference/openapi.json get /api/specials/outright-markets
openapi: 3.1.0
info:
  title: apinn — Pinnacle Data API
  version: 1.0.0
  description: Cotes Pinnacle en temps réel, format iso Pinnacle Data API.
servers:
  - url: https://api.apinn.io
security:
  - ApiKeyAuth: []
paths:
  /api/specials/outright-markets:
    get:
      summary: Marchés outright avec contestants & cotes
      description: >-
        Marchés outright/futures regroupés, avec la liste des contestants et
        leurs cotes (odds + true odds). Filtrable par sport et nombre minimum de
        contestants.
      parameters:
        - name: sport_id
          in: query
          schema:
            type: integer
          example: 29
        - name: min_contestants
          in: query
          description: Nombre minimum de contestants (défaut 8).
          schema:
            type: integer
      responses:
        '200':
          description: Marchés outright
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OutrightMarket'
components:
  schemas:
    OutrightMarket:
      type: object
      properties:
        event_id:
          type: integer
        special_id:
          type: integer
        special_name:
          type: string
        cutoff:
          type:
            - string
            - 'null'
        sport_id:
          type:
            - integer
            - 'null'
        sport_name:
          type:
            - string
            - 'null'
        league_id:
          type:
            - integer
            - 'null'
        league_name:
          type:
            - string
            - 'null'
        home:
          type:
            - string
            - 'null'
        away:
          type:
            - string
            - 'null'
        starts:
          type:
            - string
            - 'null'
        live_status:
          type: integer
        contestants:
          type: array
          items:
            $ref: '#/components/schemas/Contestant'
    Contestant:
      type: object
      properties:
        name:
          type: string
        handicap:
          type:
            - number
            - 'null'
        odds:
          type:
            - number
            - 'null'
        todds:
          type:
            - number
            - 'null'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````