Skip to main content
GET
/
awards
/
{id}
Get award by ID
curl --request GET \
  --url https://api-v2.polyrouter.io/awards/{id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "nfl_mvp_2024",
    "award_name": "NFL MVP",
    "league": "nfl",
    "season": 2024,
    "award_type": "mvp",
    "markets": [
      {
        "platform": "polymarket",
        "market_id": "pm_mvp_2024",
        "candidates": [
          {
            "player_name": "Patrick Mahomes",
            "odds": {
              "american": "+150",
              "decimal": 2.5,
              "implied_probability": 0.4
            },
            "team_polyrouter_id": "nfl_kc",
            "volume_24h": 15000,
            "last_trade_price": 0.35,
            "metadata": {}
          }
        ]
      }
    ],
    "metadata": {
      "deadline": "<string>",
      "description": "<string>",
      "eligibility": "<string>"
    }
  },
  "meta": {
    "platforms_queried": [
      "polymarket",
      "kalshi",
      "prophetx"
    ],
    "request_time": 250,
    "data_freshness": "2025-01-01T00:00:00.000Z",
    "platform_errors": {}
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

id
string
required

Award ID

Example:

"nfl_mvp_2024"

Response

Award details with market data

data
object
required
meta
object
required