GET All Leagues
https://cricket.sportmonks.com/api/v2.0/leagues
Endpoint details | |
Authorization | API Key |
Pagination | NO |
Allowed nested includes | 10 |
Available parameters | |
include | Enrich the API with more data and/or nested includes. Can be used by adding &include= etc. to your request url. |
filter | Array of fields to filter on. Can be used by adding &filter[{field you want to filter}]. For example: &filter[name]=Indian Super League. |
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.
season
seasons
country
Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.
You can learn more about what includes are and how they work here:
Request
Response
https://cricket.sportmonks.com/api/v2.0/leagues?api_token={API_TOKEN}
"data": [
{
"resource": "leagues",
"id": 3,
"season_id": 507,
"country_id": 99474,
"name": "Twenty20 International",
"code": "T20I",
"image_path": "https://cdn.sportmonks.com/images/cricket/leagues/3/3.png",
"type": "phase",
"updated_at": "2021-02-10T09:22:22.000000Z"
},
{
"resource": "leagues",
"id": 5,
"season_id": 830,
"country_id": 98,
"name": "Big Bash League",
"code": "BBL",
"image_path": "https://cdn.sportmonks.com/images/cricket/leagues/5/5.png",
"type": "league",
"updated_at": "2021-07-14T19:49:33.000000Z"
},
{
"resource": "leagues",
"id": 10,
"season_id": 648,
"country_id": 146,
"name": "CSA T20 Challenge",
"code": "T20C",
"image_path": "https://cdn.sportmonks.com/images/cricket/leagues/10/10.png",
"type": "league",
"updated_at": "2020-10-20T08:41:32.000000Z"
}
]
Last modified 2yr ago