Event Lineups
Get starting lineups for events in a specific league. Optionally filter by date (defaults to today).
Endpoint:
GET /event/{league}/lineup/{date?}
URL Parameters
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
League identifier (e.g., "nfl", "nba", "mlb") |
|
|
string |
Optional. Date in YYYY-MM-DD format (e.g., "2025-10-15"). Defaults to today if not provided. |
Response Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
int |
League identifier |
|
|
string |
Date for the lineup in YYYY-MM-DD format |
|
|
object |
Event information (see Event Fields below) |
|
|
array |
Array of team lineups (see Team Lineup Fields below) |
|
|
object |
Metadata about the lineup (see Meta Fields below) |
Event Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Event identifier |
|
|
string |
Event name |
|
|
datetime |
Event start time (UTC) |
|
|
int |
Event status ID (1=PREGAME, 2=LIVE, 3=FINAL, etc.) |
Team Lineup Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
Side of the event: "AWAY" or "HOME" |
|
|
object |
Team information (see Team Fields below) |
|
|
string |
Lineup status: "PROJECTED" or "CONFIRMED" |
|
|
datetime |
When the lineup was confirmed (null if projected) |
|
|
array |
Array of starting players (see Starter Fields below) |
Team Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Team identifier |
|
|
string |
Team name |
Starter Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
string |
Player position (e.g., "PG", "SG", "SF", "PF", "C" for NBA) |
|
|
object |
Player information (see Player Fields below) |
Player Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
long |
Player identifier |
|
|
string |
Player first name |
|
|
string |
Player last name |
Meta Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
datetime |
Date the item was created (UTC) |
|
|
datetime |
Date the item was last updated (UTC) |