10/15/25
Overview
We've added three new REST API endpoints and matching GraphQL subscriptions to provide real-time access to player news, availability data, and event lineups.
New REST Endpoints
Player News
Endpoint:
GET /player/{league}/news
Get paginated player news items including injury updates, status changes, and team news.
-
25 items per page
-
Cursor-based pagination
-
Filter by
personIdorteamId -
Supports
orderparameter (asc/desc)
Player Percent to Play
Endpoint:
GET /player/{league}/percent-to-play
Get player availability percentages indicating the likelihood a player will participate in their next game.
-
50 items per page
-
Cursor-based pagination
-
Filter by
personIdorteamId -
Includes event and team context
Event Lineups
Endpoint:
GET /event/{league}/lineup/{date?}
Get starting lineups for events on a specific date (defaults to today).
-
Returns lineups for both teams
-
Shows projected and confirmed lineups
-
Includes player positions and basic info
-
Optional date parameter (YYYY-MM-DD format)
New GraphQL Subscriptions
playerNews
Subscribe to real-time player news updates.
playerPercentToPlay
Subscribe to real-time player availability updates.
eventLineup
Subscribe to real-time lineup updates (projected and confirmed).