Matches Live
This endpoint allows you to retrieve the live matches.
It has the same results as the /matches endpoint.
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema array
- id integer
The id of the match
Note: This is a Primary Key.
- name character varying
Home team name vs away team name
- tournament_id integer
The id of the tournament
Note: This is a Foreign Key to
seasons-by-tournament.tournament_id. - tournament_name text
The name of the tournament
- tournament_importance integer
The importance of the tournament
- season_id integer
The id of the season
Note: This is a Foreign Key to
seasons.id. - season_name text
The name of the season
- round_id integer
The id of the round
Note: This is a Primary Key.
- round jsonb
The round
- status jsonb
The status of the match
- status_type text
The type of the match
- arena_id integer
The id of the arena
Note: This is a Foreign Key to
arenas.id. - arena_name text
The name of the arena
- arena_hash_image character varying
Possible values:
<= 64 charactersThe name image of the arena
- home_team_id integer
The id of the home team
Note: This is a Foreign Key to
teams.id. - home_team_name text
The name of the home team
- home_team_hash_image character varying
Possible values:
<= 64 charactersThe name image of the home team
- away_team_id integer
The id of the away team
Note: This is a Foreign Key to
teams.id. - away_team_name text
The name of the away team
- away_team_hash_image character varying
Possible values:
<= 64 charactersThe name image of the away team
- home_team_score jsonb
The score of the home team
- away_team_score jsonb
The score of the away team
- times jsonb
The time of the match
- specific_start_time timestamp with time zone
The real start time of the match
- start_time timestamp with time zone
The official start time of the match
- duration integer
The duration of the match
- last_period text
The last period of the match
- class_id integer
The id of the class
- class_name text
The name of the class
- class_hash_image character varying
Possible values:
<= 64 charactersThe name of the class image
- league_id integer
The id of the league
- league_name text
The name of the league
- league_hash_image character varying
Possible values:
<= 64 charactersThe name of the league image
- weather_id integer
The id of the weather
Note: This is a Foreign Key to
matches-weather.id. - weather_main text
The main weather
- weather_icon text
The name icon of the weather
- score_change_timestamp timestamp with time zone
The time SportMicro detected the most recent score change
[
{
"id": 0,
"name": "string",
"tournament_id": 0,
"tournament_name": "string",
"tournament_importance": 0,
"season_id": 0,
"season_name": "string",
"round_id": 0,
"status_type": "string",
"arena_id": 0,
"arena_name": "string",
"arena_hash_image": "string",
"home_team_id": 0,
"home_team_name": "string",
"home_team_hash_image": "string",
"away_team_id": 0,
"away_team_name": "string",
"away_team_hash_image": "string",
"specific_start_time": "string",
"start_time": "string",
"duration": 0,
"last_period": "string",
"class_id": 0,
"class_name": "string",
"class_hash_image": "string",
"league_id": 0,
"league_name": "string",
"league_hash_image": "string",
"weather_id": 0,
"weather_main": "string",
"weather_icon": "string",
"score_change_timestamp": "string"
}
]