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

# Get award by ID

> Fetch a single award with live market data from all platforms



## OpenAPI

````yaml openapi.json get /awards/{id}
openapi: 3.1.0
info:
  title: Polyrouter API
  version: 2.0.0
  description: >-
    Unified API for prediction market platforms (Polymarket, Kalshi, Limitless,
    Manifold)
  contact:
    name: Polyrouter
    url: https://polyrouter.io
servers:
  - url: https://api-v2.polyrouter.io
    description: Production
security:
  - apiKey: []
tags:
  - name: Health
    description: Health check and API info
  - name: Markets
    description: Prediction market operations
  - name: Events
    description: Event operations
  - name: Series
    description: Series operations
  - name: Platforms
    description: Platform information
  - name: Search
    description: Search across platforms
  - name: Trades
    description: Historical trades data
  - name: Orderbook
    description: Orderbook data (real-time and historical)
  - name: Sports
    description: Sports betting markets - games, awards, futures, and league info
  - name: Profile
    description: User profiles, trading metrics, and trade history
paths:
  /awards/{id}:
    get:
      tags:
        - Sports
      summary: Get award by ID
      description: Fetch a single award with live market data from all platforms
      operationId: getAwardById
      parameters:
        - schema:
            type: string
            description: Award ID
            example: nfl_mvp_2024
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Award details with market data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AwardResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Award not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    AwardResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AwardMarket'
        meta:
          $ref: '#/components/schemas/SportsMeta'
      required:
        - data
        - meta
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            message:
              type: string
              example: Resource not found
            timestamp:
              type: string
              format: date-time
              example: '2025-01-01T00:00:00.000Z'
          required:
            - code
            - message
            - timestamp
      required:
        - error
    AwardMarket:
      type: object
      properties:
        id:
          type: string
          example: nfl_mvp_2024
        award_name:
          type: string
          example: NFL MVP
        league:
          type: string
          example: nfl
        season:
          type: number
          example: 2024
        award_type:
          type: string
          example: mvp
        markets:
          type: array
          items:
            $ref: '#/components/schemas/AwardPlatformMarket'
        metadata:
          type: object
          properties:
            deadline:
              type: string
            description:
              type: string
            eligibility:
              type: string
          additionalProperties:
            nullable: true
      required:
        - id
        - award_name
        - league
        - season
        - award_type
        - markets
        - metadata
    SportsMeta:
      type: object
      properties:
        platforms_queried:
          type: array
          items:
            $ref: '#/components/schemas/SportsPlatform'
          example:
            - polymarket
            - kalshi
            - prophetx
        request_time:
          type: number
          example: 250
        platform_errors:
          type: object
          additionalProperties:
            type: string
        data_freshness:
          type: string
          example: '2025-01-01T00:00:00.000Z'
      required:
        - platforms_queried
        - request_time
        - data_freshness
    AwardPlatformMarket:
      type: object
      properties:
        platform:
          type: string
          example: polymarket
        market_id:
          type: string
          example: pm_mvp_2024
        candidates:
          type: array
          items:
            $ref: '#/components/schemas/AwardCandidate'
      required:
        - platform
        - market_id
        - candidates
    SportsPlatform:
      type: string
      enum:
        - polymarket
        - kalshi
        - prophetx
        - novig
        - sxbet
    AwardCandidate:
      type: object
      properties:
        player_name:
          type: string
          example: Patrick Mahomes
        team_polyrouter_id:
          type: string
          example: nfl_kc
        odds:
          $ref: '#/components/schemas/OddsFormats'
        volume_24h:
          type: number
          example: 15000
        last_trade_price:
          type: number
          example: 0.35
        metadata:
          type: object
          additionalProperties:
            nullable: true
      required:
        - player_name
        - odds
    OddsFormats:
      type: object
      properties:
        american:
          type: string
          example: '+150'
        decimal:
          type: number
          example: 2.5
        implied_probability:
          type: number
          example: 0.4
      required:
        - american
        - decimal
        - implied_probability
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````