Properties
| Name | Type | Description |
|---|---|---|
| GameKey | stringnull | A 9 digit unique code identifying the game that this record corresponds to. The GameID is composed of Season; SeasonType; Week and HomeTeam. Note: This value will be NULL for bye weeks |
| SeasonType | integer | The type of season that this game corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=All-Star) |
| Season | integer | The NFL season of the game |
| Week | integer | The NFL week of the game (regular season: 1 to 18; preseason: 0 to 4; postseason: 1 to 4). Note: seasons after 2021 will have only 3 preseason weeks |
| Date | stringnull | The date and time of the game (in US Eastern Time) |
| AwayTeam | stringnull | The abbreviation [Key] of the away team |
| HomeTeam | stringnull | The abbreviation [Key] of the home team |
| Channel | stringnull | The television station broadcasting the game |
| PointSpread | numbernull | The oddsmaker point spread at game start from the perspective of the team (negative numbers indicate the HomeTeam is favored; positive numbers indicate the AwayTeam is favored) |
| OverUnder | numbernull | The total points line (over/under) at game start |
| StadiumID | integernull | The unique ID of the team's current home stadium |
| Canceled | booleannull | Indicates whether the game was canceled |
| GeoLat | numbernull | The geographic latitude coordinate of the venue where the game is taking place |
| GeoLong | numbernull | The geographic longitude coordinate of the venue where the game is taking place |
| ForecastTempLow | integernull | The forecasted low temperature on game day at this venue (Fahrenheit). |
| ForecastTempHigh | integernull | The forecasted high temperature on game day at this venue (Fahrenheit). |
| ForecastDescription | stringnull | The forecast description on game day at this venue. |
| ForecastWindChill | integernull | The forecasted wind chill on game day at this venue. |
| ForecastWindSpeed | integernull | The forecasted wind speed on game day at this venue. |
| AwayTeamMoneyLine | integernull | The sportsbook's moneyline for the away team |
| HomeTeamMoneyLine | integernull | The sportsbook's moneyline for the home team |
| Day | stringnull | The date of the game (in US Eastern Time) |
| DateTime | stringnull | The date and time of the game (in US Eastern Time) |
| GlobalGameID | integernull | A globally unique ID for this game. This value is guaranteed to be unique across all sports/leagues |
| GlobalAwayTeamID | integernull | A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues |
| GlobalHomeTeamID | integernull | A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues |
| ScoreID | integer | Unique ID of the score/game |
| StadiumDetails | object | The details of the stadium where this game is played |
| Status | stringnull | The status of the game. For a description of possible values, see here. For how s |
| IsClosed | booleannull | Indicates whether the game is over and the final score has been verified and closed out. |
| DateTimeUTC | stringnull | The date and time of the game (in UTC) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Schedule",
"title": "Schedule",
"properties": {
"GameKey": {
"type": [
"string",
"null"
],
"description": "A 9 digit unique code identifying the game that this record corresponds to. The GameID is composed of Season; SeasonType; Week and HomeTeam. Note: This value will be NULL for bye weeks"
},
"SeasonType": {
"type": "integer",
"description": "The type of season that this game corresponds to (1=Regular Season; 2=Preseason; 3=Postseason; 4=Offseason; 5=All-Star)"
},
"Season": {
"type": "integer",
"description": "The NFL season of the game"
},
"Week": {
"type": "integer",
"description": "The NFL week of the game (regular season: 1 to 18; preseason: 0 to 4; postseason: 1 to 4). Note: seasons after 2021 will have only 3 preseason weeks"
},
"Date": {
"type": [
"string",
"null"
],
"description": "The date and time of the game (in US Eastern Time)"
},
"AwayTeam": {
"type": [
"string",
"null"
],
"description": "The abbreviation [Key] of the away team"
},
"HomeTeam": {
"type": [
"string",
"null"
],
"description": "The abbreviation [Key] of the home team"
},
"Channel": {
"type": [
"string",
"null"
],
"description": "The television station broadcasting the game"
},
"PointSpread": {
"type": [
"number",
"null"
],
"description": "The oddsmaker point spread at game start from the perspective of the team (negative numbers indicate the HomeTeam is favored; positive numbers indicate the AwayTeam is favored)"
},
"OverUnder": {
"type": [
"number",
"null"
],
"description": "The total points line (over/under) at game start"
},
"StadiumID": {
"type": [
"integer",
"null"
],
"description": "The unique ID of the team's current home stadium"
},
"Canceled": {
"type": [
"boolean",
"null"
],
"description": "Indicates whether the game was canceled"
},
"GeoLat": {
"type": [
"number",
"null"
],
"description": "The geographic latitude coordinate of the venue where the game is taking place"
},
"GeoLong": {
"type": [
"number",
"null"
],
"description": "The geographic longitude coordinate of the venue where the game is taking place"
},
"ForecastTempLow": {
"type": [
"integer",
"null"
],
"description": "The forecasted low temperature on game day at this venue (Fahrenheit)."
},
"ForecastTempHigh": {
"type": [
"integer",
"null"
],
"description": "The forecasted high temperature on game day at this venue (Fahrenheit)."
},
"ForecastDescription": {
"type": [
"string",
"null"
],
"description": "The forecast description on game day at this venue."
},
"ForecastWindChill": {
"type": [
"integer",
"null"
],
"description": "The forecasted wind chill on game day at this venue."
},
"ForecastWindSpeed": {
"type": [
"integer",
"null"
],
"description": "The forecasted wind speed on game day at this venue."
},
"AwayTeamMoneyLine": {
"type": [
"integer",
"null"
],
"description": "The sportsbook's moneyline for the away team"
},
"HomeTeamMoneyLine": {
"type": [
"integer",
"null"
],
"description": "The sportsbook's moneyline for the home team"
},
"Day": {
"type": [
"string",
"null"
],
"description": "The date of the game (in US Eastern Time)"
},
"DateTime": {
"type": [
"string",
"null"
],
"description": "The date and time of the game (in US Eastern Time)"
},
"GlobalGameID": {
"type": [
"integer",
"null"
],
"description": "A globally unique ID for this game. This value is guaranteed to be unique across all sports/leagues"
},
"GlobalAwayTeamID": {
"type": [
"integer",
"null"
],
"description": "A globally unique ID for the away team. This value is guaranteed to be unique across all sports/leagues"
},
"GlobalHomeTeamID": {
"type": [
"integer",
"null"
],
"description": "A globally unique ID for the home team. This value is guaranteed to be unique across all sports/leagues"
},
"ScoreID": {
"type": "integer",
"description": "Unique ID of the score/game"
},
"StadiumDetails": {
"$ref": "#/components/schemas/Stadium",
"description": "The details of the stadium where this game is played"
},
"Status": {
"type": [
"string",
"null"
],
"description": "The status of the game. For a description of possible values, see <a href=\"https://support.sportsdata.io/hc/en-us/articles/14287629964567-Process-Guide-Game-Status\" target=\"_blank\">here.</a> For how suspended and postponed games are handled specifically, see <a href=\"https://support.sportsdata.io/hc/en-us/articles/4404845580567-Postponed-and-Rescheduled-Games\" target=\"_blank\">here</a>."
},
"IsClosed": {
"type": [
"boolean",
"null"
],
"description": "Indicates whether the game is over and the final score has been verified and closed out."
},
"DateTimeUTC": {
"type": [
"string",
"null"
],
"description": "The date and time of the game (in UTC)"
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/sportsdataio-schedule"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.