Sportmonks · Schema

Sportmonks Livescore

Schema for a Sportmonks Football livescore record returned by the /livescores endpoints. A livescore is an in-flight fixture with current score and state.

CricketDataDeveloper-FriendlyFootballFormula 1Live ScoresMotorsportReal-TimeSoccerSportsSports DataStatistics

Properties

Name Type Description
id integer Fixture identifier.
state_id integer Current match state identifier (in play, half time, etc.).
league_id integer League identifier.
season_id integer Season identifier.
starting_at string Scheduled kickoff timestamp.
name string Match display name.
scores array Current scores per period and team.
periods array Active and historical match periods.
View JSON Schema on GitHub

JSON Schema

sportmonks-livescore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://docs.sportmonks.com/schemas/livescore.json",
  "title": "Sportmonks Livescore",
  "description": "Schema for a Sportmonks Football livescore record returned by the /livescores endpoints. A livescore is an in-flight fixture with current score and state.",
  "type": "object",
  "required": ["id", "state_id", "starting_at"],
  "properties": {
    "id": { "type": "integer", "description": "Fixture identifier." },
    "state_id": { "type": "integer", "description": "Current match state identifier (in play, half time, etc.)." },
    "league_id": { "type": "integer", "description": "League identifier." },
    "season_id": { "type": "integer", "description": "Season identifier." },
    "starting_at": { "type": "string", "format": "date-time", "description": "Scheduled kickoff timestamp." },
    "name": { "type": "string", "description": "Match display name." },
    "scores": {
      "type": "array",
      "description": "Current scores per period and team.",
      "items": {
        "type": "object",
        "properties": {
          "participant_id": { "type": "integer", "description": "Team identifier." },
          "score": {
            "type": "object",
            "properties": {
              "goals": { "type": "integer" },
              "participant": { "type": "string", "enum": ["home", "away"] }
            }
          },
          "description": { "type": "string", "description": "Score description (e.g., '1ST_HALF', 'CURRENT')." }
        }
      }
    },
    "periods": {
      "type": "array",
      "description": "Active and historical match periods.",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "integer" },
          "type_id": { "type": "integer" },
          "started": { "type": ["integer", "null"], "description": "Period start timestamp." },
          "minutes": { "type": ["integer", "null"], "description": "Period elapsed minutes." }
        }
      }
    }
  }
}

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.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/sportmonks-livescore"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.