Soccer v3 Stats
Connect to Soccer v3 Stats with 1 MCP tools for AI-powered API automation.
COMMUNITYAPI KEY0 INSTALLS
OpenAPI Specificationv3.0
{
"openapi": "3.0.0",
"servers": [
{
"url": "http://azure-api.sportsdata.io/v3/soccer/stats"
},
{
"url": "https://azure-api.sportsdata.io/v3/soccer/stats"
}
],
"info": {
"contact": {
"x-twitter": "nfldata"
},
"title": "Soccer v3 Stats",
"version": "1.0",
"x-apisguru-categories": [
"entertainment"
],
"x-logo": {
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_nfldata_profile_image.jpeg"
},
"x-origin": [
{
"format": "swagger",
"url": "https://fantasydata.com/downloads/swagger/soccer-v3-stats.json",
"version": "2.0"
}
],
"x-providerName": "sportsdata.io",
"x-serviceName": "soccer-v3-stats"
},
"security": [
{
"apiKeyHeader": []
},
{
"apiKeyQuery": []
}
],
"tags": [],
"paths": {
"/{format}/ActiveMemberships": {
"get": {
"operationId": "MembershipsActive",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships (Active)"
}
},
"/{format}/Areas": {
"get": {
"operationId": "AreasCountries",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Area"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Areas (Countries)"
}
},
"/{format}/BoxScore/{gameid}": {
"get": {
"operationId": "BoxScore",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The GameID of a Soccer game. GameIDs can be found in the Games API. Valid entries are <code>702</code>, <code>1274</code>, etc.",
"in": "path",
"name": "gameid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BoxScore"
}
}
},
"description": ""
}
},
"summary": "Box Score"
}
},
"/{format}/BoxScores/{date}": {
"get": {
"operationId": "BoxScoresByDate",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/BoxScore"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Box Scores by Date"
}
},
"/{format}/BoxScoresByCompetition/{competition}/{date}": {
"get": {
"operationId": "BoxScoresByDateByCompetition",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "An indication of a soccer competition/league. This value can be the CompetitionId or the Competition Key. Possible values include: <code>EPL</code>, <code>1</code>, <code>MLS</code>, <code>8</code>, etc.",
"in": "path",
"name": "competition",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/BoxScore"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Box Scores by Date by Competition"
}
},
"/{format}/BoxScoresDelta/{date}/{minutes}": {
"get": {
"operationId": "BoxScoresByDateDelta",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Only returns player statistics that have changed in the last X minutes. You specify how many minutes in time to go back. Valid entries are:\n<code>1</code>, <code>2</code> ... <code>all</code>.",
"in": "path",
"name": "minutes",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/BoxScore"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Box Scores by Date Delta"
}
},
"/{format}/BoxScoresDeltaByCompetition/{competition}/{date}/{minutes}": {
"get": {
"operationId": "BoxScoresDeltaByDateByCompetition",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "An indication of a soccer competition/league. This value can be the CompetitionId or the Competition Key. Possible values include: <code>EPL</code>, <code>1</code>, <code>MLS</code>, <code>8</code>, etc.",
"in": "path",
"name": "competition",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Only returns player statistics that have changed in the last X minutes. You specify how many minutes in time to go back. Valid entries are:\n<code>1</code>, <code>2</code> ... <code>all</code>.",
"in": "path",
"name": "minutes",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/BoxScore"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Box Scores Delta by Date by Competition"
}
},
"/{format}/CompetitionDetails/{competition}": {
"get": {
"operationId": "CompetitionFixturesLeagueDetails",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "An indication of a soccer competition/league. This value can be the CompetitionId or the Competition Key. Possible values include: <code>EPL</code>, <code>1</code>, <code>MLS</code>, <code>8</code>, etc.",
"in": "path",
"name": "competition",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CompetitionDetail"
}
}
},
"description": ""
}
},
"summary": "Competition Fixtures (League Details)"
}
},
"/{format}/CompetitionHierarchy": {
"get": {
"operationId": "CompetitionHierarchyLeagueHierarchy",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Area"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Competition Hierarchy (League Hierarchy)"
}
},
"/{format}/Competitions": {
"get": {
"operationId": "CompetitionsLeagues",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Competition"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Competitions (Leagues)"
}
},
"/{format}/DfsSlatesByDate/{date}": {
"get": {
"operationId": "DfsSlatesByDate",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"enum": [
"json",
"xml"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2020-02-18</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/DfsSlate"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Dfs Slates By Date"
}
},
"/{format}/GamesByDate/{date}": {
"get": {
"operationId": "GamesByDate",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Games by Date"
}
},
"/{format}/HistoricalMemberships": {
"get": {
"operationId": "MembershipsHistorical",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships (Historical)"
}
},
"/{format}/HistoricalMembershipsByCompetition/{competition}": {
"get": {
"operationId": "MembershipsByCompetitionHistorical",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "An indication of a soccer competition/league. This value can be the CompetitionId or the Competition Key. Possible values include: <code>EPL</code>, <code>1</code>, <code>MLS</code>, <code>8</code>, etc.",
"in": "path",
"name": "competition",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships by Competition (Historical)"
}
},
"/{format}/HistoricalMembershipsByTeam/{teamid}": {
"get": {
"operationId": "MembershipsByTeamHistorical",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Team ID. \nExample:<code>516</code>.",
"in": "path",
"name": "teamid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships by Team (Historical)"
}
},
"/{format}/MembershipsByCompetition/{competition}": {
"get": {
"operationId": "MembershipsByCompetitionActive",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "An indication of a soccer competition/league. This value can be the CompetitionId or the Competition Key. Possible values include: <code>EPL</code>, <code>1</code>, <code>MLS</code>, <code>8</code>, etc.",
"in": "path",
"name": "competition",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships by Competition (Active)"
}
},
"/{format}/MembershipsByTeam/{teamid}": {
"get": {
"operationId": "MembershipsByTeamActive",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Team ID. \nExample:<code>516</code>.",
"in": "path",
"name": "teamid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships by Team (Active)"
}
},
"/{format}/Player/{playerid}": {
"get": {
"operationId": "Player",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Player ID.\nExample:<code>90026231</code>.",
"in": "path",
"name": "playerid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Player"
}
}
},
"description": ""
}
},
"summary": "Player"
}
},
"/{format}/PlayerGameStatsByDate/{date}": {
"get": {
"operationId": "PlayerGameStatsByDate",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerGame"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Player Game Stats by Date"
}
},
"/{format}/PlayerGameStatsByPlayer/{date}/{playerid}": {
"get": {
"operationId": "PlayerGameStatsByPlayer",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique FantasyData Player ID.\nExample:<code>90026231</code>.",
"in": "path",
"name": "playerid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerGame"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Player Game Stats by Player"
}
},
"/{format}/PlayerSeasonStats/{roundid}": {
"get": {
"operationId": "PlayerSeasonStats",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerSeason"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Player Season Stats"
}
},
"/{format}/PlayerSeasonStatsByPlayer/{roundid}/{playerid}": {
"get": {
"operationId": "PlayerSeasonStatsByPlayer",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique FantasyData Player ID.\nExample:<code>90026231</code>.",
"in": "path",
"name": "playerid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerSeason"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Player Season Stats by Player"
}
},
"/{format}/PlayerSeasonStatsByTeam/{roundid}/{team}": {
"get": {
"operationId": "PlayerSeasonStatsByTeam",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
},
{
"description": "Unique FantasyData Team ID. \nExample:<code>516</code>.",
"in": "path",
"name": "team",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PlayerSeason"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Player Season Stats by Team"
}
},
"/{format}/Players": {
"get": {
"operationId": "Players",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Player"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Players"
}
},
"/{format}/PlayersByTeam/{teamid}": {
"get": {
"operationId": "PlayersByTeam",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Team ID. \nExample:<code>516</code>.",
"in": "path",
"name": "teamid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Player"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Players by Team"
}
},
"/{format}/RecentlyChangedMemberships/{days}": {
"get": {
"operationId": "MembershipsRecentlyChanged",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The number of days since memberships were updated. For example, if you pass <code>3</code>, you'll receive all memberships that have been updated in the past 3 days. Valid entries are: <code>1</code>, <code>2</code> ... <code>30</code>",
"in": "path",
"name": "days",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Membership"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Memberships (Recently Changed)"
}
},
"/{format}/Schedule/{roundid}": {
"get": {
"operationId": "Schedule",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Schedule"
}
},
"/{format}/SeasonTeams/{seasonid}": {
"get": {
"operationId": "SeasonTeams",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Season ID. SeasonIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "seasonid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/SeasonTeam"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Season Teams"
}
},
"/{format}/Standings/{roundid}": {
"get": {
"operationId": "Standings",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Standing"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Standings"
}
},
"/{format}/TeamGameStatsByDate/{date}": {
"get": {
"operationId": "TeamGameStatsByDate",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "The date of the game(s).\n<br>Examples: <code>2017-02-27</code>, <code>2017-09-01</code>.",
"in": "path",
"name": "date",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TeamGame"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Team Game Stats by Date"
}
},
"/{format}/TeamSeasonStats/{roundid}": {
"get": {
"operationId": "TeamSeasonStats",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Round ID. RoundIDs can be found in the Competition Hierarchy (League Hierarchy). \nExamples: <code>1</code>, <code>2</code>, <code>3</code>, etc",
"in": "path",
"name": "roundid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/TeamSeason"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Team Season Stats"
}
},
"/{format}/Teams": {
"get": {
"operationId": "Teams",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Team"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Teams"
}
},
"/{format}/UpcomingDfsSlatesByCompetition/{competitionId}": {
"get": {
"operationId": "UpcomingDfsSlatesByCompetition",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"enum": [
"json",
"xml"
],
"type": "string"
}
},
{
"description": "The id of the competition.\n<br>Examples: <code>3</code>",
"in": "path",
"name": "competitionId",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/DfsSlate"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Upcoming Dfs Slates By Competition"
}
},
"/{format}/UpcomingScheduleByPlayer/{playerid}": {
"get": {
"operationId": "UpcomingScheduleByPlayer",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
},
{
"description": "Unique FantasyData Player ID.\nExample:<code>90026231</code>.",
"in": "path",
"name": "playerid",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Upcoming Schedule By Player"
}
},
"/{format}/Venues": {
"get": {
"operationId": "Venues",
"parameters": [
{
"description": "Desired response format. Valid entries are <code>XML</code> or <code>JSON</code>.",
"in": "path",
"name": "format",
"required": true,
"schema": {
"default": "xml",
"enum": [
"xml",
"json"
],
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Venue"
},
"type": "array"
}
}
},
"description": ""
}
},
"summary": "Venues"
}
}
},
"components": {
"schemas": {
"Area": {
"properties": {
"AreaId": {
"nullable": false,
"type": "integer"
},
"Competitions": {
"items": {
"$ref": "#/components/schemas/Competition"
},
"type": "array"
},
"CountryCode": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
}
}
},
"Booking": {
"properties": {
"BookingId": {
"nullable": false,
"type": "integer"
},
"GameId": {
"nullable": false,
"type": "integer"
},
"GameMinute": {
"nullable": true,
"type": "integer"
},
"GameMinuteExtra": {
"nullable": true,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"PlayerId": {
"nullable": true,
"type": "integer"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"BoxScore": {
"properties": {
"AdditionalAssistantReferee1": {
"$ref": "#/components/schemas/Referee"
},
"AdditionalAssistantReferee2": {
"$ref": "#/components/schemas/Referee"
},
"AssistantReferee1": {
"$ref": "#/components/schemas/Referee"
},
"AssistantReferee2": {
"$ref": "#/components/schemas/Referee"
},
"AwayTeamCoach": {
"$ref": "#/components/schemas/Coach"
},
"Bookings": {
"items": {
"$ref": "#/components/schemas/Booking"
},
"type": "array"
},
"FourthReferee": {
"$ref": "#/components/schemas/Referee"
},
"Game": {
"$ref": "#/components/schemas/Game"
},
"Goals": {
"items": {
"$ref": "#/components/schemas/Goal"
},
"type": "array"
},
"HomeTeamCoach": {
"$ref": "#/components/schemas/Coach"
},
"Lineups": {
"items": {
"$ref": "#/components/schemas/Lineup"
},
"type": "array"
},
"MainReferee": {
"$ref": "#/components/schemas/Referee"
},
"PenaltyShootouts": {
"items": {
"$ref": "#/components/schemas/PenaltyShootout"
},
"type": "array"
},
"PlayerGames": {
"items": {
"$ref": "#/components/schemas/PlayerGame"
},
"type": "array"
},
"TeamGames": {
"items": {
"$ref": "#/components/schemas/TeamGame"
},
"type": "array"
},
"VideoAssistantReferee": {
"$ref": "#/components/schemas/Referee"
}
}
},
"Coach": {
"properties": {
"CoachId": {
"nullable": false,
"type": "integer"
},
"FirstName": {
"nullable": true,
"type": "string"
},
"LastName": {
"nullable": true,
"type": "string"
},
"Nationality": {
"nullable": true,
"type": "string"
},
"ShortName": {
"nullable": true,
"type": "string"
}
}
},
"Competition": {
"properties": {
"AreaId": {
"nullable": false,
"type": "integer"
},
"AreaName": {
"nullable": true,
"type": "string"
},
"CompetitionId": {
"nullable": false,
"type": "integer"
},
"Format": {
"nullable": true,
"type": "string"
},
"Gender": {
"nullable": true,
"type": "string"
},
"Key": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
},
"Seasons": {
"items": {
"$ref": "#/components/schemas/Season"
},
"type": "array"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"CompetitionDetail": {
"properties": {
"AreaId": {
"nullable": false,
"type": "integer"
},
"AreaName": {
"nullable": true,
"type": "string"
},
"CompetitionId": {
"nullable": false,
"type": "integer"
},
"CurrentSeason": {
"$ref": "#/components/schemas/Season"
},
"Format": {
"nullable": true,
"type": "string"
},
"Games": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
},
"Gender": {
"nullable": true,
"type": "string"
},
"Key": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
},
"Seasons": {
"items": {
"$ref": "#/components/schemas/Season"
},
"type": "array"
},
"Teams": {
"items": {
"$ref": "#/components/schemas/TeamDetail"
},
"type": "array"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"DfsSlate": {
"properties": {
"CompetitionId": {
"nullable": true,
"type": "integer"
},
"DfsSlateGames": {
"items": {
"$ref": "#/components/schemas/DfsSlateGame"
},
"type": "array"
},
"DfsSlatePlayers": {
"items": {
"$ref": "#/components/schemas/DfsSlatePlayer"
},
"type": "array"
},
"IsMultiDaySlate": {
"nullable": true,
"type": "boolean"
},
"NumberOfGames": {
"nullable": true,
"type": "integer"
},
"Operator": {
"nullable": true,
"type": "string"
},
"OperatorDay": {
"nullable": true,
"type": "string"
},
"OperatorGameType": {
"nullable": true,
"type": "string"
},
"OperatorName": {
"nullable": true,
"type": "string"
},
"OperatorSlateID": {
"nullable": true,
"type": "integer"
},
"OperatorStartTime": {
"nullable": true,
"type": "string"
},
"RemovedByOperator": {
"nullable": true,
"type": "boolean"
},
"SalaryCap": {
"nullable": true,
"type": "integer"
},
"SlateID": {
"nullable": false,
"type": "integer"
},
"SlateRosterSlots": {
"items": {
"nullable": true,
"type": "string"
},
"type": "array"
}
}
},
"DfsSlateGame": {
"properties": {
"Game": {
"$ref": "#/components/schemas/Game"
},
"GameID": {
"nullable": true,
"type": "integer"
},
"OperatorGameID": {
"nullable": true,
"type": "integer"
},
"RemovedByOperator": {
"nullable": true,
"type": "boolean"
},
"SlateGameID": {
"nullable": false,
"type": "integer"
},
"SlateID": {
"nullable": false,
"type": "integer"
}
}
},
"DfsSlatePlayer": {
"properties": {
"OperatorPlayerID": {
"nullable": true,
"type": "string"
},
"OperatorPlayerName": {
"nullable": true,
"type": "string"
},
"OperatorPosition": {
"nullable": true,
"type": "string"
},
"OperatorRosterSlots": {
"items": {
"nullable": true,
"type": "string"
},
"type": "array"
},
"OperatorSalary": {
"nullable": true,
"type": "integer"
},
"OperatorSlatePlayerID": {
"nullable": true,
"type": "string"
},
"PlayerGameProjectionStatID": {
"nullable": true,
"type": "integer"
},
"PlayerID": {
"nullable": true,
"type": "integer"
},
"RemovedByOperator": {
"nullable": true,
"type": "boolean"
},
"SlateGameID": {
"nullable": true,
"type": "integer"
},
"SlateID": {
"nullable": false,
"type": "integer"
},
"SlatePlayerID": {
"nullable": false,
"type": "integer"
},
"Team": {
"nullable": true,
"type": "string"
},
"TeamID": {
"nullable": true,
"type": "integer"
}
}
},
"Game": {
"properties": {
"Attendance": {
"nullable": true,
"type": "integer"
},
"AwayTeamCountryCode": {
"nullable": true,
"type": "string"
},
"AwayTeamFormation": {
"nullable": true,
"type": "string"
},
"AwayTeamId": {
"nullable": true,
"type": "integer"
},
"AwayTeamKey": {
"nullable": true,
"type": "string"
},
"AwayTeamMoneyLine": {
"nullable": true,
"type": "integer"
},
"AwayTeamName": {
"nullable": true,
"type": "string"
},
"AwayTeamPointSpreadPayout": {
"nullable": true,
"type": "integer"
},
"AwayTeamScore": {
"nullable": true,
"type": "integer"
},
"AwayTeamScoreExtraTime": {
"nullable": true,
"type": "integer"
},
"AwayTeamScorePenalty": {
"nullable": true,
"type": "integer"
},
"AwayTeamScorePeriod1": {
"nullable": true,
"type": "integer"
},
"AwayTeamScorePeriod2": {
"nullable": true,
"type": "integer"
},
"Clock": {
"nullable": true,
"type": "integer"
},
"ClockDisplay": {
"nullable": true,
"type": "string"
},
"ClockExtra": {
"nullable": true,
"type": "integer"
},
"DateTime": {
"nullable": true,
"type": "string"
},
"Day": {
"nullable": true,
"type": "string"
},
"DrawMoneyLine": {
"nullable": true,
"type": "integer"
},
"GameId": {
"nullable": false,
"type": "integer"
},
"GlobalAwayTeamId": {
"nullable": true,
"type": "integer"
},
"GlobalGameId": {
"nullable": false,
"type": "integer"
},
"GlobalHomeTeamId": {
"nullable": true,
"type": "integer"
},
"Group": {
"nullable": true,
"type": "string"
},
"HomeTeamCountryCode": {
"nullable": true,
"type": "string"
},
"HomeTeamFormation": {
"nullable": true,
"type": "string"
},
"HomeTeamId": {
"nullable": true,
"type": "integer"
},
"HomeTeamKey": {
"nullable": true,
"type": "string"
},
"HomeTeamMoneyLine": {
"nullable": true,
"type": "integer"
},
"HomeTeamName": {
"nullable": true,
"type": "string"
},
"HomeTeamPointSpreadPayout": {
"nullable": true,
"type": "integer"
},
"HomeTeamScore": {
"nullable": true,
"type": "integer"
},
"HomeTeamScoreExtraTime": {
"nullable": true,
"type": "integer"
},
"HomeTeamScorePenalty": {
"nullable": true,
"type": "integer"
},
"HomeTeamScorePeriod1": {
"nullable": true,
"type": "integer"
},
"HomeTeamScorePeriod2": {
"nullable": true,
"type": "integer"
},
"IsClosed": {
"nullable": true,
"type": "boolean"
},
"OverPayout": {
"nullable": true,
"type": "integer"
},
"OverUnder": {
"nullable": true,
"type": "number"
},
"Period": {
"nullable": true,
"type": "string"
},
"PlayoffAggregateScore": {
"$ref": "#/components/schemas/PlayoffAggregateScore"
},
"PointSpread": {
"nullable": true,
"type": "number"
},
"RoundId": {
"nullable": false,
"type": "integer"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"Status": {
"nullable": true,
"type": "string"
},
"UnderPayout": {
"nullable": true,
"type": "integer"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UpdatedUtc": {
"nullable": true,
"type": "string"
},
"VenueId": {
"nullable": true,
"type": "integer"
},
"VenueType": {
"nullable": true,
"type": "string"
},
"Week": {
"nullable": true,
"type": "integer"
},
"Winner": {
"nullable": true,
"type": "string"
}
}
},
"Goal": {
"properties": {
"AssistedByPlayerId1": {
"nullable": true,
"type": "integer"
},
"AssistedByPlayerId2": {
"nullable": true,
"type": "integer"
},
"AssistedByPlayerName1": {
"nullable": true,
"type": "string"
},
"AssistedByPlayerName2": {
"nullable": true,
"type": "string"
},
"GameId": {
"nullable": false,
"type": "integer"
},
"GameMinute": {
"nullable": true,
"type": "integer"
},
"GameMinuteExtra": {
"nullable": true,
"type": "integer"
},
"GoalId": {
"nullable": false,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"PlayerId": {
"nullable": true,
"type": "integer"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"Lineup": {
"properties": {
"GameId": {
"nullable": false,
"type": "integer"
},
"GameMinute": {
"nullable": true,
"type": "integer"
},
"GameMinuteExtra": {
"nullable": true,
"type": "integer"
},
"LineupId": {
"nullable": false,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"PitchPositionHorizontal": {
"nullable": true,
"type": "integer"
},
"PitchPositionVertical": {
"nullable": true,
"type": "integer"
},
"PlayerId": {
"nullable": false,
"type": "integer"
},
"Position": {
"nullable": true,
"type": "string"
},
"ReplacedPlayerId": {
"nullable": true,
"type": "integer"
},
"ReplacedPlayerName": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"Membership": {
"properties": {
"Active": {
"nullable": false,
"type": "boolean"
},
"EndDate": {
"nullable": true,
"type": "string"
},
"Jersey": {
"nullable": true,
"type": "integer"
},
"MembershipId": {
"nullable": false,
"type": "integer"
},
"PlayerId": {
"nullable": false,
"type": "integer"
},
"PlayerName": {
"nullable": true,
"type": "string"
},
"StartDate": {
"nullable": true,
"type": "string"
},
"TeamArea": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"TeamName": {
"nullable": true,
"type": "string"
},
"Updated": {
"nullable": true,
"type": "string"
}
}
},
"PenaltyShootout": {
"properties": {
"GameId": {
"nullable": false,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"Order": {
"nullable": false,
"type": "integer"
},
"PenaltyShootoutId": {
"nullable": false,
"type": "integer"
},
"PlayerId": {
"nullable": true,
"type": "integer"
},
"Position": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"Player": {
"properties": {
"BirthCity": {
"nullable": true,
"type": "string"
},
"BirthCountry": {
"nullable": true,
"type": "string"
},
"BirthDate": {
"nullable": true,
"type": "string"
},
"CommonName": {
"nullable": true,
"type": "string"
},
"DraftKingsPosition": {
"nullable": true,
"type": "string"
},
"FirstName": {
"nullable": true,
"type": "string"
},
"Foot": {
"nullable": true,
"type": "string"
},
"Gender": {
"nullable": true,
"type": "string"
},
"Height": {
"nullable": true,
"type": "integer"
},
"InjuryBodyPart": {
"nullable": true,
"type": "string"
},
"InjuryNotes": {
"nullable": true,
"type": "string"
},
"InjuryStartDate": {
"nullable": true,
"type": "string"
},
"InjuryStatus": {
"nullable": true,
"type": "string"
},
"Jersey": {
"nullable": true,
"type": "integer"
},
"LastName": {
"nullable": true,
"type": "string"
},
"Nationality": {
"nullable": true,
"type": "string"
},
"PhotoUrl": {
"nullable": true,
"type": "string"
},
"PlayerId": {
"nullable": false,
"type": "integer"
},
"Position": {
"nullable": true,
"type": "string"
},
"PositionCategory": {
"nullable": true,
"type": "string"
},
"RotoWirePlayerID": {
"nullable": true,
"type": "integer"
},
"ShortName": {
"nullable": true,
"type": "string"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UsaTodayHeadshotNoBackgroundUpdated": {
"nullable": true,
"type": "string"
},
"UsaTodayHeadshotNoBackgroundUrl": {
"nullable": true,
"type": "string"
},
"UsaTodayHeadshotUpdated": {
"nullable": true,
"type": "string"
},
"UsaTodayHeadshotUrl": {
"nullable": true,
"type": "string"
},
"UsaTodayPlayerID": {
"nullable": true,
"type": "integer"
},
"Weight": {
"nullable": true,
"type": "integer"
}
}
},
"PlayerGame": {
"properties": {
"Assists": {
"nullable": true,
"type": "number"
},
"BlockedShots": {
"nullable": true,
"type": "number"
},
"Captain": {
"nullable": true,
"type": "boolean"
},
"CornersWon": {
"nullable": true,
"type": "number"
},
"Crosses": {
"nullable": true,
"type": "number"
},
"DateTime": {
"nullable": true,
"type": "string"
},
"Day": {
"nullable": true,
"type": "string"
},
"DefenderCleanSheets": {
"nullable": true,
"type": "number"
},
"DraftKingsPosition": {
"nullable": true,
"type": "string"
},
"DraftKingsSalary": {
"nullable": true,
"type": "integer"
},
"FanDuelPosition": {
"nullable": true,
"type": "string"
},
"FanDuelSalary": {
"nullable": true,
"type": "integer"
},
"FantasyPoints": {
"nullable": true,
"type": "number"
},
"FantasyPointsDraftKings": {
"nullable": true,
"type": "number"
},
"FantasyPointsFanDuel": {
"nullable": true,
"type": "number"
},
"FantasyPointsMondogoal": {
"nullable": true,
"type": "number"
},
"FantasyPointsYahoo": {
"nullable": true,
"type": "number"
},
"Fouled": {
"nullable": true,
"type": "number"
},
"Fouls": {
"nullable": true,
"type": "number"
},
"GameId": {
"nullable": true,
"type": "integer"
},
"Games": {
"nullable": true,
"type": "integer"
},
"GlobalGameId": {
"nullable": true,
"type": "integer"
},
"GlobalOpponentId": {
"nullable": true,
"type": "integer"
},
"GlobalTeamId": {
"nullable": true,
"type": "integer"
},
"GoalkeeperCleanSheets": {
"nullable": true,
"type": "number"
},
"GoalkeeperGoalsAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperSaves": {
"nullable": true,
"type": "number"
},
"GoalkeeperSingleGoalAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperWins": {
"nullable": true,
"type": "number"
},
"Goals": {
"nullable": true,
"type": "number"
},
"HomeOrAway": {
"nullable": true,
"type": "string"
},
"InjuryBodyPart": {
"nullable": true,
"type": "string"
},
"InjuryNotes": {
"nullable": true,
"type": "string"
},
"InjuryStartDate": {
"nullable": true,
"type": "string"
},
"InjuryStatus": {
"nullable": true,
"type": "string"
},
"Interceptions": {
"nullable": true,
"type": "number"
},
"IsGameOver": {
"nullable": false,
"type": "boolean"
},
"Jersey": {
"nullable": true,
"type": "integer"
},
"LastManTackle": {
"nullable": true,
"type": "number"
},
"Minutes": {
"nullable": true,
"type": "number"
},
"MondogoalPosition": {
"nullable": true,
"type": "string"
},
"MondogoalSalary": {
"nullable": true,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"Offsides": {
"nullable": true,
"type": "number"
},
"Opponent": {
"nullable": true,
"type": "string"
},
"OpponentId": {
"nullable": true,
"type": "integer"
},
"OpponentScore": {
"nullable": true,
"type": "number"
},
"OwnGoals": {
"nullable": true,
"type": "number"
},
"Passes": {
"nullable": true,
"type": "number"
},
"PassesCompleted": {
"nullable": true,
"type": "number"
},
"PenaltiesConceded": {
"nullable": true,
"type": "number"
},
"PenaltiesWon": {
"nullable": true,
"type": "number"
},
"PenaltyKickGoals": {
"nullable": true,
"type": "number"
},
"PenaltyKickMisses": {
"nullable": true,
"type": "number"
},
"PenaltyKickSaves": {
"nullable": true,
"type": "number"
},
"PlayerId": {
"nullable": true,
"type": "integer"
},
"Position": {
"nullable": true,
"type": "string"
},
"PositionCategory": {
"nullable": true,
"type": "string"
},
"RedCards": {
"nullable": true,
"type": "number"
},
"RoundId": {
"nullable": true,
"type": "integer"
},
"Score": {
"nullable": true,
"type": "number"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"ShortName": {
"nullable": true,
"type": "string"
},
"Shots": {
"nullable": true,
"type": "number"
},
"ShotsOnGoal": {
"nullable": true,
"type": "number"
},
"Started": {
"nullable": true,
"type": "integer"
},
"StatId": {
"nullable": false,
"type": "integer"
},
"Suspension": {
"nullable": true,
"type": "boolean"
},
"SuspensionReason": {
"nullable": true,
"type": "string"
},
"Tackles": {
"nullable": true,
"type": "number"
},
"TacklesWon": {
"nullable": true,
"type": "number"
},
"Team": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": true,
"type": "integer"
},
"Touches": {
"nullable": true,
"type": "number"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UpdatedUtc": {
"nullable": true,
"type": "string"
},
"YahooPosition": {
"nullable": true,
"type": "string"
},
"YahooSalary": {
"nullable": true,
"type": "integer"
},
"YellowCards": {
"nullable": true,
"type": "number"
},
"YellowRedCards": {
"nullable": true,
"type": "number"
}
}
},
"PlayerSeason": {
"properties": {
"Assists": {
"nullable": true,
"type": "number"
},
"BlockedShots": {
"nullable": true,
"type": "number"
},
"CornersWon": {
"nullable": true,
"type": "number"
},
"Crosses": {
"nullable": true,
"type": "number"
},
"DefenderCleanSheets": {
"nullable": true,
"type": "number"
},
"FantasyPoints": {
"nullable": true,
"type": "number"
},
"FantasyPointsDraftKings": {
"nullable": true,
"type": "number"
},
"FantasyPointsFanDuel": {
"nullable": true,
"type": "number"
},
"FantasyPointsMondogoal": {
"nullable": true,
"type": "number"
},
"FantasyPointsYahoo": {
"nullable": true,
"type": "number"
},
"Fouled": {
"nullable": true,
"type": "number"
},
"Fouls": {
"nullable": true,
"type": "number"
},
"Games": {
"nullable": true,
"type": "integer"
},
"GlobalTeamId": {
"nullable": true,
"type": "integer"
},
"GoalkeeperCleanSheets": {
"nullable": true,
"type": "number"
},
"GoalkeeperGoalsAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperSaves": {
"nullable": true,
"type": "number"
},
"GoalkeeperSingleGoalAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperWins": {
"nullable": true,
"type": "number"
},
"Goals": {
"nullable": true,
"type": "number"
},
"Interceptions": {
"nullable": true,
"type": "number"
},
"LastManTackle": {
"nullable": true,
"type": "number"
},
"Minutes": {
"nullable": true,
"type": "number"
},
"Name": {
"nullable": true,
"type": "string"
},
"Offsides": {
"nullable": true,
"type": "number"
},
"OpponentScore": {
"nullable": true,
"type": "number"
},
"OwnGoals": {
"nullable": true,
"type": "number"
},
"Passes": {
"nullable": true,
"type": "number"
},
"PassesCompleted": {
"nullable": true,
"type": "number"
},
"PenaltiesConceded": {
"nullable": true,
"type": "number"
},
"PenaltiesWon": {
"nullable": true,
"type": "number"
},
"PenaltyKickGoals": {
"nullable": true,
"type": "number"
},
"PenaltyKickMisses": {
"nullable": true,
"type": "number"
},
"PenaltyKickSaves": {
"nullable": true,
"type": "number"
},
"PlayerId": {
"nullable": true,
"type": "integer"
},
"Position": {
"nullable": true,
"type": "string"
},
"PositionCategory": {
"nullable": true,
"type": "string"
},
"RedCards": {
"nullable": true,
"type": "number"
},
"RoundId": {
"nullable": true,
"type": "integer"
},
"Score": {
"nullable": true,
"type": "number"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"ShortName": {
"nullable": true,
"type": "string"
},
"Shots": {
"nullable": true,
"type": "number"
},
"ShotsOnGoal": {
"nullable": true,
"type": "number"
},
"Started": {
"nullable": true,
"type": "integer"
},
"StatId": {
"nullable": false,
"type": "integer"
},
"Tackles": {
"nullable": true,
"type": "number"
},
"TacklesWon": {
"nullable": true,
"type": "number"
},
"Team": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": true,
"type": "integer"
},
"Touches": {
"nullable": true,
"type": "number"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UpdatedUtc": {
"nullable": true,
"type": "string"
},
"YellowCards": {
"nullable": true,
"type": "number"
},
"YellowRedCards": {
"nullable": true,
"type": "number"
}
}
},
"PlayoffAggregateScore": {
"properties": {
"Created": {
"nullable": true,
"type": "string"
},
"TeamA_AggregateScore": {
"nullable": false,
"type": "integer"
},
"TeamA_Id": {
"nullable": false,
"type": "integer"
},
"TeamB_AggregateScore": {
"nullable": false,
"type": "integer"
},
"TeamB_Id": {
"nullable": false,
"type": "integer"
},
"Updated": {
"nullable": true,
"type": "string"
},
"WinningTeamId": {
"nullable": false,
"type": "integer"
}
}
},
"Referee": {
"properties": {
"FirstName": {
"nullable": true,
"type": "string"
},
"LastName": {
"nullable": true,
"type": "string"
},
"Nationality": {
"nullable": true,
"type": "string"
},
"RefereeId": {
"nullable": false,
"type": "integer"
},
"ShortName": {
"nullable": true,
"type": "string"
}
}
},
"Round": {
"properties": {
"CurrentRound": {
"nullable": false,
"type": "boolean"
},
"CurrentWeek": {
"nullable": true,
"type": "integer"
},
"EndDate": {
"nullable": true,
"type": "string"
},
"Games": {
"items": {
"$ref": "#/components/schemas/Game"
},
"type": "array"
},
"Name": {
"nullable": true,
"type": "string"
},
"PlayerSeasons": {
"items": {
"$ref": "#/components/schemas/PlayerSeason"
},
"type": "array"
},
"RoundId": {
"nullable": false,
"type": "integer"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonId": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"Standings": {
"items": {
"$ref": "#/components/schemas/Standing"
},
"type": "array"
},
"StartDate": {
"nullable": true,
"type": "string"
},
"TeamSeasons": {
"items": {
"$ref": "#/components/schemas/TeamSeason"
},
"type": "array"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"Season": {
"properties": {
"CompetitionId": {
"nullable": false,
"type": "integer"
},
"CompetitionName": {
"nullable": true,
"type": "string"
},
"CurrentSeason": {
"nullable": false,
"type": "boolean"
},
"EndDate": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
},
"Rounds": {
"items": {
"$ref": "#/components/schemas/Round"
},
"type": "array"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonId": {
"nullable": false,
"type": "integer"
},
"StartDate": {
"nullable": true,
"type": "string"
}
}
},
"SeasonTeam": {
"properties": {
"Active": {
"nullable": false,
"type": "boolean"
},
"Gender": {
"nullable": true,
"type": "string"
},
"SeasonId": {
"nullable": false,
"type": "integer"
},
"SeasonTeamId": {
"nullable": false,
"type": "integer"
},
"Team": {
"$ref": "#/components/schemas/Team"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"TeamName": {
"nullable": true,
"type": "string"
},
"Type": {
"nullable": true,
"type": "string"
}
}
},
"Standing": {
"properties": {
"Draws": {
"nullable": true,
"type": "integer"
},
"Games": {
"nullable": true,
"type": "integer"
},
"GlobalTeamID": {
"nullable": true,
"type": "integer"
},
"GoalsAgainst": {
"nullable": true,
"type": "integer"
},
"GoalsDifferential": {
"nullable": true,
"type": "integer"
},
"GoalsScored": {
"nullable": true,
"type": "integer"
},
"Group": {
"nullable": true,
"type": "string"
},
"Losses": {
"nullable": true,
"type": "integer"
},
"Name": {
"nullable": true,
"type": "string"
},
"Order": {
"nullable": true,
"type": "integer"
},
"Points": {
"nullable": true,
"type": "integer"
},
"RoundId": {
"nullable": false,
"type": "integer"
},
"Scope": {
"nullable": true,
"type": "string"
},
"ShortName": {
"nullable": true,
"type": "string"
},
"StandingId": {
"nullable": false,
"type": "integer"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Wins": {
"nullable": true,
"type": "integer"
}
}
},
"Team": {
"properties": {
"Active": {
"nullable": false,
"type": "boolean"
},
"Address": {
"nullable": true,
"type": "string"
},
"AreaId": {
"nullable": true,
"type": "integer"
},
"AreaName": {
"nullable": true,
"type": "string"
},
"City": {
"nullable": true,
"type": "string"
},
"ClubColor1": {
"nullable": true,
"type": "string"
},
"ClubColor2": {
"nullable": true,
"type": "string"
},
"ClubColor3": {
"nullable": true,
"type": "string"
},
"Email": {
"nullable": true,
"type": "string"
},
"Fax": {
"nullable": true,
"type": "string"
},
"Founded": {
"nullable": true,
"type": "integer"
},
"FullName": {
"nullable": true,
"type": "string"
},
"Gender": {
"nullable": true,
"type": "string"
},
"GlobalTeamId": {
"nullable": false,
"type": "integer"
},
"Key": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
},
"Nickname1": {
"nullable": true,
"type": "string"
},
"Nickname2": {
"nullable": true,
"type": "string"
},
"Nickname3": {
"nullable": true,
"type": "string"
},
"Phone": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
},
"VenueId": {
"nullable": true,
"type": "integer"
},
"VenueName": {
"nullable": true,
"type": "string"
},
"Website": {
"nullable": true,
"type": "string"
},
"WikipediaLogoUrl": {
"nullable": true,
"type": "string"
},
"WikipediaWordMarkUrl": {
"nullable": true,
"type": "string"
},
"Zip": {
"nullable": true,
"type": "string"
}
}
},
"TeamDetail": {
"properties": {
"Active": {
"nullable": false,
"type": "boolean"
},
"Address": {
"nullable": true,
"type": "string"
},
"AreaId": {
"nullable": true,
"type": "integer"
},
"AreaName": {
"nullable": true,
"type": "string"
},
"City": {
"nullable": true,
"type": "string"
},
"ClubColor1": {
"nullable": true,
"type": "string"
},
"ClubColor2": {
"nullable": true,
"type": "string"
},
"ClubColor3": {
"nullable": true,
"type": "string"
},
"Email": {
"nullable": true,
"type": "string"
},
"Fax": {
"nullable": true,
"type": "string"
},
"Founded": {
"nullable": true,
"type": "integer"
},
"FullName": {
"nullable": true,
"type": "string"
},
"Gender": {
"nullable": true,
"type": "string"
},
"GlobalTeamId": {
"nullable": false,
"type": "integer"
},
"Key": {
"nullable": true,
"type": "string"
},
"Name": {
"nullable": true,
"type": "string"
},
"Nickname1": {
"nullable": true,
"type": "string"
},
"Nickname2": {
"nullable": true,
"type": "string"
},
"Nickname3": {
"nullable": true,
"type": "string"
},
"Phone": {
"nullable": true,
"type": "string"
},
"Players": {
"items": {
"$ref": "#/components/schemas/Player"
},
"type": "array"
},
"TeamId": {
"nullable": false,
"type": "integer"
},
"Type": {
"nullable": true,
"type": "string"
},
"VenueId": {
"nullable": true,
"type": "integer"
},
"VenueName": {
"nullable": true,
"type": "string"
},
"Website": {
"nullable": true,
"type": "string"
},
"WikipediaLogoUrl": {
"nullable": true,
"type": "string"
},
"WikipediaWordMarkUrl": {
"nullable": true,
"type": "string"
},
"Zip": {
"nullable": true,
"type": "string"
}
}
},
"TeamGame": {
"properties": {
"Assists": {
"nullable": true,
"type": "number"
},
"BlockedShots": {
"nullable": true,
"type": "number"
},
"CornersWon": {
"nullable": true,
"type": "number"
},
"Crosses": {
"nullable": true,
"type": "number"
},
"DateTime": {
"nullable": true,
"type": "string"
},
"Day": {
"nullable": true,
"type": "string"
},
"DefenderCleanSheets": {
"nullable": true,
"type": "number"
},
"FantasyPoints": {
"nullable": true,
"type": "number"
},
"FantasyPointsDraftKings": {
"nullable": true,
"type": "number"
},
"FantasyPointsFanDuel": {
"nullable": true,
"type": "number"
},
"FantasyPointsMondogoal": {
"nullable": true,
"type": "number"
},
"FantasyPointsYahoo": {
"nullable": true,
"type": "number"
},
"Fouled": {
"nullable": true,
"type": "number"
},
"Fouls": {
"nullable": true,
"type": "number"
},
"GameId": {
"nullable": true,
"type": "integer"
},
"Games": {
"nullable": true,
"type": "integer"
},
"GlobalGameId": {
"nullable": true,
"type": "integer"
},
"GlobalOpponentId": {
"nullable": true,
"type": "integer"
},
"GlobalTeamId": {
"nullable": true,
"type": "integer"
},
"GoalkeeperCleanSheets": {
"nullable": true,
"type": "number"
},
"GoalkeeperGoalsAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperSaves": {
"nullable": true,
"type": "number"
},
"GoalkeeperSingleGoalAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperWins": {
"nullable": true,
"type": "number"
},
"Goals": {
"nullable": true,
"type": "number"
},
"HomeOrAway": {
"nullable": true,
"type": "string"
},
"Interceptions": {
"nullable": true,
"type": "number"
},
"IsGameOver": {
"nullable": false,
"type": "boolean"
},
"LastManTackle": {
"nullable": true,
"type": "number"
},
"Minutes": {
"nullable": true,
"type": "number"
},
"Name": {
"nullable": true,
"type": "string"
},
"Offsides": {
"nullable": true,
"type": "number"
},
"Opponent": {
"nullable": true,
"type": "string"
},
"OpponentId": {
"nullable": true,
"type": "integer"
},
"OpponentScore": {
"nullable": true,
"type": "number"
},
"OwnGoals": {
"nullable": true,
"type": "number"
},
"Passes": {
"nullable": true,
"type": "number"
},
"PassesCompleted": {
"nullable": true,
"type": "number"
},
"PenaltiesConceded": {
"nullable": true,
"type": "number"
},
"PenaltiesWon": {
"nullable": true,
"type": "number"
},
"PenaltyKickGoals": {
"nullable": true,
"type": "number"
},
"PenaltyKickMisses": {
"nullable": true,
"type": "number"
},
"PenaltyKickSaves": {
"nullable": true,
"type": "number"
},
"Possession": {
"nullable": true,
"type": "number"
},
"RedCards": {
"nullable": true,
"type": "number"
},
"RoundId": {
"nullable": true,
"type": "integer"
},
"Score": {
"nullable": true,
"type": "number"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"Shots": {
"nullable": true,
"type": "number"
},
"ShotsOnGoal": {
"nullable": true,
"type": "number"
},
"StatId": {
"nullable": false,
"type": "integer"
},
"Tackles": {
"nullable": true,
"type": "number"
},
"TacklesWon": {
"nullable": true,
"type": "number"
},
"Team": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": true,
"type": "integer"
},
"Touches": {
"nullable": true,
"type": "number"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UpdatedUtc": {
"nullable": true,
"type": "string"
},
"YellowCards": {
"nullable": true,
"type": "number"
},
"YellowRedCards": {
"nullable": true,
"type": "number"
}
}
},
"TeamSeason": {
"properties": {
"Assists": {
"nullable": true,
"type": "number"
},
"BlockedShots": {
"nullable": true,
"type": "number"
},
"CornersWon": {
"nullable": true,
"type": "number"
},
"Crosses": {
"nullable": true,
"type": "number"
},
"DefenderCleanSheets": {
"nullable": true,
"type": "number"
},
"FantasyPoints": {
"nullable": true,
"type": "number"
},
"FantasyPointsDraftKings": {
"nullable": true,
"type": "number"
},
"FantasyPointsFanDuel": {
"nullable": true,
"type": "number"
},
"FantasyPointsMondogoal": {
"nullable": true,
"type": "number"
},
"FantasyPointsYahoo": {
"nullable": true,
"type": "number"
},
"Fouled": {
"nullable": true,
"type": "number"
},
"Fouls": {
"nullable": true,
"type": "number"
},
"Games": {
"nullable": true,
"type": "integer"
},
"GlobalTeamId": {
"nullable": true,
"type": "integer"
},
"GoalkeeperCleanSheets": {
"nullable": true,
"type": "number"
},
"GoalkeeperGoalsAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperSaves": {
"nullable": true,
"type": "number"
},
"GoalkeeperSingleGoalAgainst": {
"nullable": true,
"type": "number"
},
"GoalkeeperWins": {
"nullable": true,
"type": "number"
},
"Goals": {
"nullable": true,
"type": "number"
},
"Interceptions": {
"nullable": true,
"type": "number"
},
"LastManTackle": {
"nullable": true,
"type": "number"
},
"Minutes": {
"nullable": true,
"type": "number"
},
"Name": {
"nullable": true,
"type": "string"
},
"Offsides": {
"nullable": true,
"type": "number"
},
"OpponentScore": {
"nullable": true,
"type": "number"
},
"OwnGoals": {
"nullable": true,
"type": "number"
},
"Passes": {
"nullable": true,
"type": "number"
},
"PassesCompleted": {
"nullable": true,
"type": "number"
},
"PenaltiesConceded": {
"nullable": true,
"type": "number"
},
"PenaltiesWon": {
"nullable": true,
"type": "number"
},
"PenaltyKickGoals": {
"nullable": true,
"type": "number"
},
"PenaltyKickMisses": {
"nullable": true,
"type": "number"
},
"PenaltyKickSaves": {
"nullable": true,
"type": "number"
},
"Possession": {
"nullable": true,
"type": "number"
},
"RedCards": {
"nullable": true,
"type": "number"
},
"RoundId": {
"nullable": true,
"type": "integer"
},
"Score": {
"nullable": true,
"type": "number"
},
"Season": {
"nullable": false,
"type": "integer"
},
"SeasonType": {
"nullable": false,
"type": "integer"
},
"Shots": {
"nullable": true,
"type": "number"
},
"ShotsOnGoal": {
"nullable": true,
"type": "number"
},
"StatId": {
"nullable": false,
"type": "integer"
},
"Tackles": {
"nullable": true,
"type": "number"
},
"TacklesWon": {
"nullable": true,
"type": "number"
},
"Team": {
"nullable": true,
"type": "string"
},
"TeamId": {
"nullable": true,
"type": "integer"
},
"Touches": {
"nullable": true,
"type": "number"
},
"Updated": {
"nullable": true,
"type": "string"
},
"UpdatedUtc": {
"nullable": true,
"type": "string"
},
"YellowCards": {
"nullable": true,
"type": "number"
},
"YellowRedCards": {
"nullable": true,
"type": "number"
}
}
},
"Venue": {
"properties": {
"Address": {
"nullable": true,
"type": "string"
},
"Capacity": {
"nullable": true,
"type": "integer"
},
"City": {
"nullable": true,
"type": "string"
},
"Country": {
"nullable": true,
"type": "string"
},
"GeoLat": {
"nullable": true,
"type": "number"
},
"GeoLong": {
"nullable": true,
"type": "number"
},
"Name": {
"nullable": true,
"type": "string"
},
"Nickname1": {
"nullable": true,
"type": "string"
},
"Nickname2": {
"nullable": true,
"type": "string"
},
"Open": {
"nullable": false,
"type": "boolean"
},
"Opened": {
"nullable": true,
"type": "integer"
},
"Surface": {
"nullable": true,
"type": "string"
},
"VenueId": {
"nullable": false,
"type": "integer"
},
"Zip": {
"nullable": true,
"type": "string"
}
}
}
},
"securitySchemes": {
"apiKeyHeader": {
"in": "header",
"name": "Ocp-Apim-Subscription-Key",
"type": "apiKey"
},
"apiKeyQuery": {
"in": "query",
"name": "key",
"type": "apiKey"
}
}
}
}