Properties
| Name | Type | Description |
|---|---|---|
| Season | integer | The MLB season for which these totals apply |
| SeasonType | integer | The type of season that this record corresponds to (1=Regular Season, 2=Preseason, 3=Postseason, 4=Offseason, 5=AllStar) |
| TeamID | integer | The team's unique TeamID as assigned by SportsDataIO |
| Key | stringnull | Abbreviation of the team (e.g. LAD; PHI; BOS; CHC; etc.) |
| City | stringnull | The city/location of the team (e.g. Los Angeles; Philadelphia; Boston; Chicago; etc.) |
| Name | stringnull | Team's full name (city and mascot) |
| League | stringnull | The league of the team (possible values: AL; NL) |
| Division | stringnull | The division of the team (e.g. East, Central, West) |
| Wins | integernull | The total number of wins by a team in the season |
| Losses | integernull | Total number of losses by the team in the season |
| Percentage | numbernull | Winning percentage of a team |
| DivisionWins | integernull | Total number of division wins in the season |
| DivisionLosses | integernull | Total number of division losses in a season |
| GamesBehind | numbernull | Number of games behind the first place team |
| LastTenGamesWins | integernull | Total number of wins in the last ten games |
| LastTenGamesLosses | integernull | Total number of losses in the last ten games |
| Streak | stringnull | Current streak the team is on (e.g. Win 3, Lost 3) |
| LeagueRank | integernull | The ranking in the league |
| DivisionRank | integernull | The ranking in the division (e.g. 1, 2, 3, 4, 5) |
| WildCardRank | integernull | The rank of the team in terms of Wild Card standings only |
| WildCardGamesBehind | numbernull | The number of games behind a team is of the final Wild Card spot |
| HomeWins | integernull | Total number of home wins in the season |
| HomeLosses | integernull | Total number of home losses in the season |
| AwayWins | integernull | Total number of away wins in the season |
| AwayLosses | integernull | Total number of away losses in the season |
| DayWins | integernull | Total number of wins in daytime games |
| DayLosses | integernull | Total number of losses in daytime games |
| NightWins | integernull | Total number of wins in nighttime games |
| NightLosses | integernull | Total number of losses in nighttime games |
| RunsScored | integernull | Total runs scored by the team in the season |
| RunsAgainst | integernull | Total number of runs scored by the opponents of a specified team |
| GlobalTeamID | integernull | A globally unique ID for this team. This value is guaranteed to be unique across all sports/leagues. |
| ClinchedBestLeagueRecord | booleannull | Returns TRUE if team has clinched the best record in their respective league; FALSE if not |
| ClinchedWildCard | booleannull | Returns TRUE if team has clinched Wild Card spot; FALSE if not |
| ClinchedDivision | booleannull | Returns TRUE if team has clinched their division; FALSE if not |
| EliminatedFromPlayoffContention | booleannull | Returns TRUE if team has been eliminated from playoff contention; FALSE if not |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Standing",
"title": "Standing",
"properties": {
"Season": {
"type": "integer",
"description": "The MLB season for which these totals apply"
},
"SeasonType": {
"type": "integer",
"description": "The type of season that this record corresponds to (1=Regular Season, 2=Preseason, 3=Postseason, 4=Offseason, 5=AllStar)"
},
"TeamID": {
"type": "integer",
"description": "The team's unique TeamID as assigned by SportsDataIO"
},
"Key": {
"type": [
"string",
"null"
],
"description": "Abbreviation of the team (e.g. LAD; PHI; BOS; CHC; etc.)"
},
"City": {
"type": [
"string",
"null"
],
"description": "The city/location of the team (e.g. Los Angeles; Philadelphia; Boston; Chicago; etc.)"
},
"Name": {
"type": [
"string",
"null"
],
"description": "Team's full name (city and mascot)"
},
"League": {
"type": [
"string",
"null"
],
"description": "The league of the team (possible values: AL; NL)"
},
"Division": {
"type": [
"string",
"null"
],
"description": "The division of the team (e.g. East, Central, West)"
},
"Wins": {
"type": [
"integer",
"null"
],
"description": "The total number of wins by a team in the season"
},
"Losses": {
"type": [
"integer",
"null"
],
"description": "Total number of losses by the team in the season"
},
"Percentage": {
"type": [
"number",
"null"
],
"description": "Winning percentage of a team"
},
"DivisionWins": {
"type": [
"integer",
"null"
],
"description": "Total number of division wins in the season"
},
"DivisionLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of division losses in a season"
},
"GamesBehind": {
"type": [
"number",
"null"
],
"description": "Number of games behind the first place team"
},
"LastTenGamesWins": {
"type": [
"integer",
"null"
],
"description": "Total number of wins in the last ten games"
},
"LastTenGamesLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of losses in the last ten games"
},
"Streak": {
"type": [
"string",
"null"
],
"description": "Current streak the team is on (e.g. Win 3, Lost 3)"
},
"LeagueRank": {
"type": [
"integer",
"null"
],
"description": "The ranking in the league"
},
"DivisionRank": {
"type": [
"integer",
"null"
],
"description": "The ranking in the division (e.g. 1, 2, 3, 4, 5)"
},
"WildCardRank": {
"type": [
"integer",
"null"
],
"description": "The rank of the team in terms of Wild Card standings only"
},
"WildCardGamesBehind": {
"type": [
"number",
"null"
],
"description": "The number of games behind a team is of the final Wild Card spot"
},
"HomeWins": {
"type": [
"integer",
"null"
],
"description": "Total number of home wins in the season"
},
"HomeLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of home losses in the season"
},
"AwayWins": {
"type": [
"integer",
"null"
],
"description": "Total number of away wins in the season"
},
"AwayLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of away losses in the season"
},
"DayWins": {
"type": [
"integer",
"null"
],
"description": "Total number of wins in daytime games"
},
"DayLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of losses in daytime games"
},
"NightWins": {
"type": [
"integer",
"null"
],
"description": "Total number of wins in nighttime games"
},
"NightLosses": {
"type": [
"integer",
"null"
],
"description": "Total number of losses in nighttime games"
},
"RunsScored": {
"type": [
"integer",
"null"
],
"description": "Total runs scored by the team in the season"
},
"RunsAgainst": {
"type": [
"integer",
"null"
],
"description": "Total number of runs scored by the opponents of a specified team"
},
"GlobalTeamID": {
"type": [
"integer",
"null"
],
"description": "A globally unique ID for this team. This value is guaranteed to be unique across all sports/leagues."
},
"ClinchedBestLeagueRecord": {
"type": [
"boolean",
"null"
],
"description": "Returns TRUE if team has clinched the best record in their respective league; FALSE if not"
},
"ClinchedWildCard": {
"type": [
"boolean",
"null"
],
"description": "Returns TRUE if team has clinched Wild Card spot; FALSE if not"
},
"ClinchedDivision": {
"type": [
"boolean",
"null"
],
"description": "Returns TRUE if team has clinched their division; FALSE if not"
},
"EliminatedFromPlayoffContention": {
"type": [
"boolean",
"null"
],
"description": "Returns TRUE if team has been eliminated from playoff contention; FALSE if not"
}
}
}
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-standing"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.