referee is null when no referee is assigned.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Return the referee assigned to a match with career summary stats.
referee is null when no referee is assigned.
GET https://api.thestatsapi.com/api/football/matches/{match_id}/referee
| Name | Type | Required | Description |
|---|---|---|---|
match_id | string | Yes | Match ID. Example: mt_838955483 |
{
"data": {
"match_id": "mt_838955483",
"referee": {
"id": "ref_7264609",
"name": "Michael Oliver",
"slug": "michael-oliver",
"country": "England",
"country_code": "GB",
"country_slug": "england",
"career": {
"games": 412,
"yellow_cards": 1396,
"red_cards": 42,
"yellow_red_cards": 20
}
}
}
}
{
"data": {
"match_id": "mt_838955483",
"referee": null
}
}