LogoLogo
Cricket APISportMonksContactFootball API
  • Welcome
  • Getting Started
    • Getting started
    • All endpoints
    • Enriching your response
  • Our API
    • Introduction to our API
    • Continents
      • GET All Continents
      • GET Continent by ID
    • Countries
      • GET All Countries
      • GET Country by ID
    • Leagues
      • GET All Leagues
      • GET League by ID
    • Seasons
      • GET All Seasons
      • GET Season by ID
    • Fixtures
      • GET All Fixtures
      • GET Fixture by ID
    • Livescores
      • GET All Livescores
    • Teams
      • GET All Teams
      • GET Team by ID
      • GET Squad by Team and Season ID
    • Players
      • GET All Players
      • GET Player by ID
    • Officials
      • GET All Officials
      • GET Official by ID
    • Venues
      • GET All Venues
      • GET Venue by ID
    • Positions
      • GET All Positions
      • GET Position by ID
    • Stages
      • GET All Stages
      • GET Stage by ID
    • Team Rankings
      • GET Global Team Rankings
    • Standings
      • GET Standings by Season ID
      • GET Standings by Stage ID
    • Scores
      • GET All Scores
      • GET Score by ID
  • Relationships
    • Scoreboards
    • Official/Umpries
    • Results
  • API References
  • API Reference Guide
  • API Rate limit
  • Statuses and definitions
  • Demo response files
  • Events
  • Statistics
  • General
  • SportMonks
  • Plans & Pricing
  • FAQ
  • Contact
  • Changelog
    • Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Our API
  2. Officials

GET All Officials

GET All Officials

https://cricket.sportmonks.com/api/v2.0/officials

Endpoint details

Authorization

API Key

Pagination

NO

Parameters

Available parameters

filter

Array of fields to filter on. Can be used by adding &filter[{field you want to filter}]. For example: &filter[country_id]=146.

fields[object]

Only return fields you are interested in. Simply add &fields[object]=id,name,code to your request url.

sort

One or comma separated list of fields to sort on. Can be used by adding &sort= to your request url.

Filters

name country_id

Sort

You can sort on all fields.

Example response

https://cricket.sportmonks.com/api/v2.0/officials?api_token={API_TOKEN}
    "data": [
        {
            "resource": "officials",
            "id": 1,
            "country_id": 146,
            "firstname": "Maraise",
            "lastname": "Erasmus",
            "fullname": "Maraise Erasmus",
            "dateofbirth": "1964-02-27",
            "gender": "m",
            "updated_at": "2018-10-11T09:38:55.000000Z"
        },
        {
            "resource": "officials",
            "id": 2,
            "country_id": 52126,
            "firstname": "Aleem",
            "lastname": "Dar",
            "fullname": "Aleem Dar",
            "dateofbirth": "1968-06-06",
            "gender": "m",
            "updated_at": "2018-10-11T09:40:07.000000Z"
        },
        {
            "resource": "officials",
            "id": 3,
            "country_id": 2817,
            "firstname": "Tony",
            "lastname": "Hill",
            "fullname": "Tony Hill",
            "dateofbirth": "1951-06-26",
            "gender": "m",
            "updated_at": "2020-04-11T13:12:00.000000Z"
        },
        {
            "resource": "officials",
            "id": 4,
            "country_id": 38404,
            "firstname": "Ranjan",
            "lastname": "Madugella",
            "fullname": "Ranjan Madugella",
            "dateofbirth": "1959-04-22",
            "gender": "m",
            "updated_at": "2018-10-11T09:43:41.000000Z"
        },
        {
            "resource": "officials",
            "id": 6,
            "country_id": 462,
            "firstname": "Richard",
            "lastname": "Illingworth",
            "fullname": "Richard Illingworth",
            "dateofbirth": "1963-08-23",
            "gender": "m",
            "updated_at": "2018-10-11T09:46:15.000000Z"
        },
        {
            "resource": "officials",
            "id": 7,
            "country_id": 98,
            "firstname": "Bruce",
            "lastname": "Oxenford",
            "fullname": "Bruce Oxenford",
            "dateofbirth": "1960-03-05",
            "gender": "m",
            "updated_at": "2018-10-11T09:47:22.000000Z"
        },
        {
            "resource": "officials",
            "id": 8,
            "country_id": 98,
            "firstname": "Steve",
            "lastname": "Davis",
            "fullname": "Steve Davis",
            "dateofbirth": "1952-04-09",
            "gender": "m",
            "updated_at": "2020-04-12T10:59:37.000000Z"
        },
        {
            "resource": "officials",
            "id": 9,
            "country_id": 462,
            "firstname": "Ian",
            "lastname": "Gould",
            "fullname": "Ian Gould",
            "dateofbirth": "1957-08-19",
            "gender": "m",
            "updated_at": "2018-10-11T09:50:42.000000Z"
        },
        {
            "resource": "officials",
            "id": 10,
            "country_id": 98,
            "firstname": "Rod",
            "lastname": "Tucker",
            "fullname": "Rod Tucker",
            "dateofbirth": "1964-08-28",
            "gender": "m",
            "updated_at": "2020-04-15T19:00:09.000000Z"
        },
PreviousOfficialsNextGET Official by ID

Last updated 6 months ago

Was this helpful?