> ## 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.

# List awards

> Fetch available award markets (MVP, DPOY, etc.) for a league



## OpenAPI

````yaml openapi.json get /list-awards
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:
  /list-awards:
    get:
      tags:
        - Sports
      summary: List awards
      description: Fetch available award markets (MVP, DPOY, etc.) for a league
      operationId: listAwards
      parameters:
        - schema:
            $ref: '#/components/schemas/League'
          required: true
          name: league
          in: query
        - schema:
            type: string
            description: Filter by award type (mvp, dpoy, opoy, etc.)
            example: mvp
          required: false
          name: award_type
          in: query
        - schema:
            allOf:
              - $ref: '#/components/schemas/SportsPlatform'
              - description: Filter by platform
          required: false
          name: platform
          in: query
      responses:
        '200':
          description: List of awards
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAwardsResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    League:
      type: string
      enum:
        - nfl
        - nba
        - nhl
        - mlb
      description: League to query (required)
    SportsPlatform:
      type: string
      enum:
        - polymarket
        - kalshi
        - prophetx
        - novig
        - sxbet
    ListAwardsResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            awards:
              type: array
              items:
                $ref: '#/components/schemas/AwardInfo'
          required:
            - awards
        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
    AwardInfo:
      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
        platform_markets:
          type: object
          properties:
            polymarket:
              type: object
              properties:
                market_id:
                  type: string
                clob_token_ids:
                  type: array
                  items:
                    type: string
              required:
                - market_id
            kalshi:
              type: object
              properties:
                event_ticker:
                  type: string
              required:
                - event_ticker
            prophetx:
              type: object
              properties:
                tournament_id:
                  type: string
              required:
                - tournament_id
            novig:
              type: object
              properties:
                market_slug:
                  type: string
              required:
                - market_slug
            sxbet:
              type: object
              properties:
                league_id:
                  type: number
              required:
                - league_id
        metadata:
          type: object
          properties:
            deadline:
              type: string
            description:
              type: string
            eligibility:
              type: string
          additionalProperties:
            nullable: true
      required:
        - id
        - award_name
        - league
        - season
        - award_type
        - platform_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
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````