Player News
Requires elevated access, inquire here.
Get player news items for a specific league with cursor-based pagination. Returns 25 items per page.
Endpoint:
GET /player/{league}/news
URL Parameters
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
League identifier (e.g., "nfl", "nba", "mlb") |
Query Parameters
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
Cursor for pagination (opaque base64-encoded string). Omit for first page. |
|
|
string |
Sort order: "desc" (default, newest first) or "asc" (oldest first) |
|
|
long |
Optional. Filter by specific player ID |
|
|
int |
Optional. Filter by specific team ID |
Response Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
array |
Array of player news items (see below) |
|
|
boolean |
Indicates whether the operation was successful |
|
|
array |
Collection of messages (errors, warnings, info) |
|
|
object |
Pagination information (see below) |
Pagination Object
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
Cursor to use for fetching the next page. Empty string if no next page. |
|
|
string |
Cursor to use for fetching the previous page. Empty string if no previous page. |
Player News Item Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Unique identifier for the news item |
|
|
int |
League identifier |
|
|
object |
Player information (see Person Fields below) |
|
|
object |
Team information (see Team Fields below) |
|
|
string |
News headline |
|
|
string |
Additional notes or description |
|
|
string |
Player status (e.g., "OUT", "QUESTIONABLE", "PROBABLE") |
|
|
object |
Injury information (see Injury Fields below) |
|
|
object |
Metadata about the news item (see Meta Fields below) |
Person Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Player identifier |
|
|
string |
Player first name |
|
|
string |
Player last name |
Team Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Team identifier |
|
|
string |
Team name |
Injury Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
int |
Injury type identifier |
|
|
string |
Injury type name (e.g., "Knee", "Ankle") |
Meta Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
datetime |
Date the item was created (UTC) |
|
|
datetime |
Date the item was last updated (UTC) |
Pagination Example
To fetch the next page, use the
nextCursor
value from the response:
GET /player/nfl/news?cursor=eyJpZCI6MTIzNDUsImRpcmVjdGlvbiI6Im5leHQifQ==
Filtering Example
To fetch news for a specific player:
GET /player/nfl/news?personId=67890
To fetch news for a specific team:
GET /player/nfl/news?teamId=100