Player News
Requires elevated access, inquire here.
Player News Subscription
Subscribe to real-time player news updates for one or more leagues. Receive immediate notifications when new player news items are published or existing items are updated.
Parameters
|
Field |
Type |
Description |
|---|---|---|
|
|
array of integers |
Optional. Array of league IDs to subscribe to (e.g., |
Response Types
|
Field |
Type |
Description |
|---|---|---|
|
|
object |
The player news item (see Player News Fields below) |
|
|
string |
Timestamp when the message was generated |
|
|
string |
Unique identifier for this message (for internal use) |
|
|
string |
Correlation identifier for message tracking (for internal use) |
Player News 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) |
Example Subscription
Subscribe to NFL and NBA player news:
subscription {
playerNews(leagueIds: [1, 3]) {
playerNews {
id
leagueId
person {
id
firstName
lastName
}
team {
id
name
}
headline
notes
status
injury {
id
name
}
meta {
createdAt
updatedAt
}
}
messageTimestamp
messageId
correlationId
}
}