Skip to main content
GET
/
list-awards
List available awards
curl --request GET \
  --url https://api.polyrouter.io/functions/v1/list-awards \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "awards": [
      {
        "id": "nfl_mvp_2025",
        "award_name": "NFL MVP",
        "league": "nfl",
        "season": 2025,
        "award_type": "mvp",
        "platforms": [
          "<string>"
        ],
        "metadata": {
          "deadline": "2023-11-07T05:31:56Z",
          "description": "<string>",
          "eligibility": "<string>"
        }
      }
    ],
    "pagination": {
      "total": 123,
      "limit": 123,
      "offset": 123,
      "has_more": true,
      "next_offset": 123
    },
    "meta": {
      "league": "<string>",
      "data_freshness": "2023-11-07T05:31:56Z"
    }
  },
  "meta": {
    "request_time": 123,
    "cache_hit": true,
    "data_freshness": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Query Parameters

league
enum<string>
required

League ID (required)

Available options:
,
nfl,
nba,
nhl,
mlb
award_type
string

Filter by award type

season
integer
default:2025

Season year

Response

Awards list retrieved successfully

data
object
meta
object