Introduction
Entity Sports application programming interfaces (API) give you access to our sports data. You can use our Entity Sports API to build web and mobile sports application. Either it's fantasy sports or live score our data full fills requirements for all type of applications.
Entity Sports API deliver season, competition, teams, matches, player, statistical data for Cricket and Soccer. Since the API is true to RESTful principles, it’s easy to interact with using any tool capable of performing https requests, such as Postman or cURL.
To allow you to interact securely with our API from a client-side web application (though you should remember that you should never expose your API keys in any public website's client-side code). JSON will be returned in all responses from the API, including errors.
https://doc.entitysport.com/
$url = "https://rest.entitysport.com/v2/?token=[ACCESS_TOKEN]"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); $resp = curl_exec($curl); curl_close($curl); var_dump($resp);
import requests url = "https://rest.entitysport.com/v2/?token=[ACCESS_TOKEN]" resp = requests.get(url) print(resp.status_code)
URL url = new URL("https://rest.entitysport.com/v2/?token=[ACCESS_TOKEN]"); HttpURLConnection http = (HttpURLConnection)url.openConnection(); System.out.println(http.getResponseCode() + " " + http.getResponseMessage()); http.disconnect();
var request = require('request'); var options = { url: 'http://example.com' }; function callback(error, response, body) { if (!error && response.statusCode == 200) { console.log(body); } } request(options, callback);
curl -X GET "https://rest.entitysport.com/v2/?token=[ACCESS_TOKEN]
Getting Started
You will need an active access key and secret key with a valid subsciption to start using our API. Please visit entitysport.com to request your keys and subscription.
To access any API, you need a token. A token can be generated using your keys. Token is a piece of information that would allow you to access our API data for a short period of time (expire time). Auth API provides you the token, by validating your keys. Request to our Auth API whenever the access token is expired or unavailable.
Request
- Path: /v2/auth/
- Method: Post
- POST Parameters
- access_key - Access Key of your Application.
- secret_key - Secret key of your Application
- extend - Token will expire on subscription end date.
If "extend" parameter is not used, Then the generated token will expire in 1 hour
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.token:
access token.response.expires:
access token expire timestamp.
It's very easy to start using the EntitySport Cricket API. By passing your token as token to our api server, you can get access to our API data instantly.
https Request
GET https://rest.entitysport.com/v2/?token=[ACCESS_TOKEN]
Reference properties
Parameter | Value | Description |
---|---|---|
api_doc | string | Api Document |
status_codes | array | Status Codes |
Status codes properties
Parameter | Value | Description |
---|---|---|
ok | string | A successfull response |
error | string | if the request contains error |
invalid | string | if there is some mistake in request |
unauthorized | string | if the request is not authorized, usually for invalid/expired access token |
noaccess | string | No access to requested resource |
"https://rest.entitysport.com/v2/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "api_doc": "http://doc.entitysport.com/", "status_codes": { "ok": "Success", "error": "Failure", "invalid": "Invalid Request", "unauthorized": "Un authorized", "noaccess": "No access to requested resource" } }, "api_version": "2.0" }
All API request will resolve with any of the following https header status.
Response code
Description
200
API request valid, informations ready to access
304
API request valid, but data was not modified since last accessed (compared using Etag)
400
Client side error. occurs for invalid request
401
Occurs for unauthorized request
501
Server side error. Internal server error, unable to process your request
All successfull API request will return json output. The basic structure of data is available on all of the calls.
Status - Possible Values are as follows:
Status
Description
ok
A successfull response
error
if the request contains error
unauthorized
if the request is not authorized, usually for invalid/expired access token
accessdenied
if your app try to access non permitted data
response:
contains the main data of the response. value can be string, number, array or object.
Parameter
Value
Description
Per_page
Integer
Number of item to list in each API request
Paged
Integer
Page Number for request
/?token=[ACCESS_TOKEN]&per_page=5&&paged=3
There are some informations that we call as OBJECT. A response can contain a single object, or multiple objects or no objects at all. It is important get famililar with our objects.
We have 7 Obejcts in total. A object is a set of data, which contains a unique identifier, and directly relates to other objects. ie: match object connects inning object, team object.
Each object has a unique identifier which start with the first character of object name, and id as suffix. ie: competition unique identified named as cid, for match it's mid, for player it's pid, for team, it's tid and for season - sid.
-
Season: A seaon is a year timeframe. ie: 2016, 2014-15 etc. Tournaments played between March to September is marked with current year as season name. From October - February, it is marked with cross year, four digit from current year, and 2 digit from next year, separated by a hyphen, ie: 2015-16.
-
Competition: Competition is a tour, or tournament, or throphy cup. A competition contains information matches, teams, player performance, table standings, season, dates, type, category etc
-
Round: Round act as a sub-competition of another competition. When a tournament demands group stage matches, or a tour contains different format matches (as series), we keep their data as round.
-
Match: Match is the core part of our api. A match makes connection between teams, competition, round, players and innings.
-
Inning: Inning hold single match inning data.
-
Team: A generic sports team, having a name, logo, country and type of team.
-
Player: A generic sports player.
Cricket API V2
- Sesoson:-
Season API consists of all the cricket seasons that will take place over a period of a year. A Season is simply a complete year in which various tournaments in a certain fixed year are included. If you get the Season API, you will be able to access all the competitions API that are present in that particular season.
- Competition:-
Competition API consists of Competition List API, Competition overview API, Competition matches API, Competition teams API, Competition Squads API, Competition Standings API, and Competition Statistics types API, Competition Statistic API. A competition is a kind of tournament where many teams participate to compete with each other. A competition includes various formats, matches and other activities as well.
- Matches:-
Matches API includes Matches LIst API, Match Info API, Match Fantasy Points API, Match Scorecard API, Match Innings Commentary API, Match Live API, Fantasy Match Squad API, Match Playing 11 API, Match Statistics API, Match Wagon Wheel API. Match API will provide all the details related to the matches.
- Teams:-
Team API provides all the details related to the team. Team API includes Team matches API.
- Players:-
Players API will provide all the details related to the players present in a team.
Player API includes Player Search API, Player Profile API, and Player Statistic API.
Stand Alone API:-
Provides information of all avaialable cricket seasons you have access. A season is named as complete year ie: 2016 for all tournaments that happens between march to october of the correspoding year, or name cross year ie: 2016-17 for matches happens between November-February or vice versa.
Request
- Path: /v2/seasons/
- Method: GET
- Parameters
Parameter
Value
Descripiton
Token
{ACCESS_TOKEN}
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.seasons:
An array of all available season objects you have access in.
Reference properties
Parameter | Value | Description |
---|---|---|
sid | integer | season id |
name | string | season representational name |
competitions_url | string | API URL address for competitions played on the season |
"https://rest.entitysport.com/v2/seasons/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "items": [ { "sid": "201617", "name": "2016-17", "competitions_url": "seasons/201617/competitions" }, { "sid": "2017", "name": "2017", "competitions_url": "seasons/2017/competitions" }, { "sid": "201718", "name": "2017-18", "competitions_url": "seasons/201718/competitions" }, { "sid": "2018", "name": "2018", "competitions_url": "seasons/2018/competitions" }, { "sid": "201819", "name": "2018-19", "competitions_url": "seasons/201819/competitions" }, { "sid": "2015", "name": "2015", "competitions_url": "seasons/2015/competitions" }, { "sid": "2020", "name": "2020", "competitions_url": "seasons/2020/competitions" }, { "sid": "2021", "name": "2021", "competitions_url": "seasons/2021/competitions" }, { "sid": "2022", "name": "2022", "competitions_url": "seasons/2022/competitions" } ], "total_items": 9, "total_pages": 1 }, "etag": "ea5855cd3b590b4272ea6c3294f712cf", "modified": "2022-11-18 09:43:33", "datetime": "2022-11-18 09:43:33", "api_version": "2.0" }
This will list all available competitions those you are subscribed and can access for specified season. Season is named using 4 digit year, ex: 2010, or Year combo, ex: 2010-11.
It will list 10 competitions data per request. If there is more than 10 competitions, you will get extra value under response node. You can use the page parameter to jump to a specific page if exists.
Request
- Path: /v2/seasons/[sid(season id)]/competitons
- Method: GET
- Parameters
Parameter
Value
Descripition
Token
{ACCESS_TOKEN}
API Access token
Per_page
Integer
Number of competition to list in each API request
Paged
Integer
Page Number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.cometitions:
array of competition cards.response.total_cometitions:
total number of competitions listed under the season.response.total_pages:
total number of competitions for the current season.
Reference properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition last match date |
country | string | Country ISO Code |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
matches_url | string | api url for matches data |
teams_url | string | api url for teams data |
standings_url | string | api url for standings data |
rounds | array | an array of rounds played in the competition, see round object reference. |
Rounds properties
Parameter | Value | Description |
---|---|---|
rid | integer | round id |
order | integer | round sort order |
name | string | Round name/title |
type | string | competition type, possible values are tour, tournament, series |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
datestart | date | round first match date |
dateend | date | round last match date |
matches_url | string | api url for matches data |
teams_url | string | api url for teams data |
"https://rest.entitysport.com/v2/seasons/2021/competitions?token=ec471071441bb2ac538a0ff901abd249&per_page=10&&paged=1"
{ "status": "ok", "response": { "items": [ { "cid": 121730, "title": "India tour of South Africa", "abbr": "ITOSA", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-12-17", "dateend": "2022-01-23", "country": "int", "total_matches": "6", "total_rounds": "2", "total_teams": "2", "matches_url": "competitions/121730/matches", "teams_url": "competitions/121730/teams", "standings_url": "competitions/121730/standings", "rounds": [ { "rid": 121736, "order": 1, "name": "Test Series", "type": "series", "match_format": "odi", "datestart": "2021-12-17", "dateend": "2022-01-07", "matches_url": "rounds/121736/matches", "teams_url": "rounds/121736/teams" }, { "rid": 121737, "order": 2, "name": "ODI Series", "type": "series", "match_format": "odi", "datestart": "2022-01-11", "dateend": "2022-01-16", "matches_url": "rounds/121737/matches", "teams_url": "rounds/121737/teams" } ] }, { "cid": 122141, "title": "The Ashes", "abbr": "TASH", "type": "series", "category": "international", "match_format": "test", "status": "result", "season": "2021", "datestart": "2021-12-08", "dateend": "2022-01-18", "country": "int", "total_matches": "5", "total_rounds": "1", "total_teams": "2", "matches_url": "competitions/122141/matches", "teams_url": "competitions/122141/teams", "standings_url": "competitions/122141/standings", "rounds": [ { "rid": 122142, "order": 1, "name": "Test Series", "type": "series", "match_format": "test", "datestart": "2021-12-08", "dateend": "2022-01-18", "matches_url": "rounds/122142/matches", "teams_url": "rounds/122142/teams" } ] }, { "cid": 121285, "title": "New Zealand tour of Pakistan", "abbr": "nztop-2021", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-09-17", "dateend": "2021-10-03", "total_matches": "8", "total_rounds": "2", "total_teams": "2", "country": "int", "matches_url": "competitions/121285/matches", "teams_url": "competitions/121285/teams", "standings_url": "competitions/121285/standings", "rounds": [ { "rid": 121569, "order": 1, "name": "New Zealand in Pakistan ODI Series", "type": "series", "match_format": "odi", "datestart": "2021-09-17", "dateend": "2021-09-21", "matches_url": "rounds/121569/matches", "teams_url": "rounds/121569/teams" }, { "rid": 121286, "order": 2, "name": "New Zealand in Pakistan T20I Series", "type": "series", "match_format": "t20i", "datestart": "2021-09-25", "dateend": "2021-10-03", "matches_url": "rounds/121286/matches", "teams_url": "rounds/121286/teams" } ] }, { "cid": 121282, "title": "New Zealand tour of Bangladesh", "abbr": "nztob-2021", "type": "tour", "category": "international", "match_format": "t20i", "status": "result", "season": "2021", "datestart": "2021-08-29", "dateend": "2021-09-10", "total_matches": "6", "total_rounds": "1", "total_teams": "3", "country": "int", "matches_url": "competitions/121282/matches", "teams_url": "competitions/121282/teams", "standings_url": "competitions/121282/standings", "rounds": [ { "rid": 121283, "order": 1, "name": "New Zealand in Bangladesh T20I Series", "type": "series", "match_format": "t20i", "datestart": "2021-09-01", "dateend": "2021-09-10", "matches_url": "rounds/121283/matches", "teams_url": "rounds/121283/teams" } ] }, { "cid": 121344, "title": "Castle Lite Series", "abbr": "CLS", "type": "series", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-08-28", "dateend": "2021-09-02", "country": "int", "total_matches": "5", "total_rounds": "2", "total_teams": "2", "matches_url": "competitions/121344/matches", "teams_url": "competitions/121344/teams", "standings_url": "competitions/121344/standings", "rounds": [ { "rid": 121364, "order": 1, "name": "CLS OD", "type": "series", "match_format": "lista", "datestart": "2021-08-28", "dateend": "2021-08-28", "matches_url": "rounds/121364/matches", "teams_url": "rounds/121364/teams" }, { "rid": 121365, "order": 2, "name": "CLS T20", "type": "series", "match_format": "t20", "datestart": "2021-08-29", "dateend": "2021-08-29", "matches_url": "rounds/121365/matches", "teams_url": "rounds/121365/teams" } ] }, { "cid": 119023, "title": "South Africa tour of Ireland", "abbr": "satoi-2021", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-07-11", "dateend": "2021-07-24", "total_matches": "6", "total_rounds": "2", "total_teams": "2", "country": "int", "matches_url": "competitions/119023/matches", "teams_url": "competitions/119023/teams", "standings_url": "competitions/119023/standings", "rounds": [ { "rid": 119024, "order": 1, "name": "South Africa in Ireland T20I Series", "type": "series", "match_format": "t20i", "datestart": "2021-07-20", "dateend": "2021-07-24", "matches_url": "rounds/119024/matches", "teams_url": "rounds/119024/teams" }, { "rid": 119880, "order": 2, "name": "South Africa in Ireland ODI Series", "type": "series", "match_format": "odi", "datestart": "2021-07-11", "dateend": "2021-07-16", "matches_url": "rounds/119880/matches", "teams_url": "rounds/119880/teams" } ] }, { "cid": 119021, "title": "Pakistan tour of England", "abbr": "ptoe-2021", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-07-08", "dateend": "2021-07-21", "total_matches": "7", "total_rounds": "2", "total_teams": "2", "country": "int", "matches_url": "competitions/119021/matches", "teams_url": "competitions/119021/teams", "standings_url": "competitions/119021/standings", "rounds": [ { "rid": 119870, "order": 1, "name": "Pakistan in England ODI Series", "type": "series", "match_format": "odi", "datestart": "2021-07-07", "dateend": "2021-07-13", "matches_url": "rounds/119870/matches", "teams_url": "rounds/119870/teams" }, { "rid": 119022, "order": 2, "name": "Pakistan in England T20I Series", "type": "series", "match_format": "t20i", "datestart": "2021-07-16", "dateend": "2021-07-20", "matches_url": "rounds/119022/matches", "teams_url": "rounds/119022/teams" } ] }, { "cid": 119018, "title": "Sri Lanka tour of England", "abbr": "sltoe-2021", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-06-23", "dateend": "2021-07-04", "total_matches": "6", "total_rounds": "2", "total_teams": "5", "country": "int", "matches_url": "competitions/119018/matches", "teams_url": "competitions/119018/teams", "standings_url": "competitions/119018/standings", "rounds": [ { "rid": 119019, "order": 1, "name": "Sri Lanka in England T20I Series", "type": "series", "match_format": "t20i", "datestart": "2021-06-23", "dateend": "2021-06-26", "matches_url": "rounds/119019/matches", "teams_url": "rounds/119019/teams" }, { "rid": 119020, "order": 2, "name": "Sri Lanka in England ODI Series", "type": "series", "match_format": "odi", "datestart": "2021-06-29", "dateend": "2021-07-04", "matches_url": "rounds/119020/matches", "teams_url": "rounds/119020/teams" } ] }, { "cid": 120657, "title": "India tour of England", "abbr": "itoe-2021", "type": "tour", "category": "international", "match_format": "mixed", "status": "result", "season": "2021", "datestart": "2021-06-18", "dateend": "2022-07-06", "total_matches": "7", "total_rounds": "2", "total_teams": "3", "country": "int", "matches_url": "competitions/120657/matches", "teams_url": "competitions/120657/teams", "standings_url": "competitions/120657/standings", "rounds": [ { "rid": 120658, "order": 1, "name": "IETS", "type": "series", "match_format": "test", "datestart": "2021-08-04", "dateend": "2022-07-01", "matches_url": "rounds/120658/matches", "teams_url": "rounds/120658/teams" }, { "rid": 120706, "order": 2, "name": "Tour Match", "type": "series", "match_format": "firstclass", "datestart": "2021-07-20", "dateend": "2021-07-25", "matches_url": "rounds/120706/matches", "teams_url": "rounds/120706/teams" } ] }, { "cid": 119016, "title": "New Zealand tour of England", "abbr": "nztoe-2021", "type": "tour", "category": "international", "match_format": "test", "status": "result", "season": "2021", "datestart": "2021-05-25", "dateend": "2021-06-14", "total_matches": "2", "total_rounds": "1", "total_teams": "5", "country": "int", "matches_url": "competitions/119016/matches", "teams_url": "competitions/119016/teams", "standings_url": "competitions/119016/standings", "rounds": [ { "rid": 119017, "order": 1, "name": "New Zealand in England Test Series", "type": "series", "match_format": "test", "datestart": "2021-06-02", "dateend": "2021-06-14", "matches_url": "rounds/119017/matches", "teams_url": "rounds/119017/teams" } ] } ], "total_items": 20, "total_pages": 2 }, "etag": "dc72160e8a4fe693ce5242ba1c1620e5", "modified": "2022-11-02 09:18:27", "datetime": "2022-11-02 09:18:27", "api_version": "2.0" }
This will list all available competitions those you are subscribed.
It will list 10 competitions data per request. If there is more than 10 competitions, you will get extra value under response node. You can use the page parameter to jump to a specific page if exists.
Request
- Path: /v2/competitions
- Method: GET
- Parameters
Parameter
Value
Description
Token
{ACCESS_TOKEN}
API Access token
Status
String
status=fixture for upcoming competitions, status=result for completed competitions, status=live for live competitions
Per_page
Integer
Number of competition to list in each API request
Paged
Integer
Page Number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.cometitions:
array of competition cards.response.total_cometitions:
total number of competitions listed under the season.response.total_pages:
total number of competitions for the current season.
Reference properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
category | string | competition category, possible values are international, domestic, youth, women |
game_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition first last date |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
country | string | Country ISO Code |
"https://rest.entitysport.com/v2/competitions?token=ec471071441bb2ac538a0ff901abd249&per_page=30&&paged=1&status=live"
{ "status": "ok", "response": { "items": [ { "cid": 90534, "title": "England tour of Bangladesh", "abbr": "bangladesh-v-england-2016-17", "category": "international", "game_format": "mixed", "status": "result", "season": "2016/17", "datestart": "2016-10-04", "dateend": "2016-11-02", "total_matches": "8", "total_rounds": "2", "total_teams": "4", "country": "int" }, { "cid": 90550, "title": "England tour of India", "abbr": "india-v-england-2016-17", "category": "international", "game_format": "mixed", "status": "result", "season": "2016/17", "datestart": "2016-11-09", "dateend": "2017-02-01", "total_matches": "13", "total_rounds": "3", "total_teams": "3", "country": "int" }, { "cid": 89908, "title": "ICC Champions Trophy", "abbr": "icc-champions-trophy-2017", "season": "2017", "datestart": "2017-06-01", "dateend": "2017-06-20", "total_matches": "15", "total_rounds": "2", "total_teams": "8", "category": "international", "game_format": "odi", "status": "result", "country": "int" }, { "cid": 91402, "title": "India tour of Sri Lanka", "abbr": "sri-lanka-v-india-2017", "category": "international", "game_format": "mixed", "status": "result", "season": "2017", "datestart": "2017-07-19", "dateend": "2017-09-06", "total_matches": "10", "total_rounds": "2", "total_teams": "3", "country": "int" }, { "cid": 104964, "title": "Australia tour of India", "abbr": "atoi-1718", "category": "international", "game_format": "mixed", "status": "result", "season": "2017/18", "datestart": "2017-09-17", "dateend": "2017-10-13", "total_matches": "9", "total_rounds": "2", "total_teams": "3", "country": "int" }, { "cid": 108474, "title": "Sri Lanka tour of India", "abbr": "sltoi-1718", "category": "international", "game_format": "mixed", "status": "result", "season": "2017/18", "datestart": "2017-11-16", "dateend": "2017-12-24", "total_matches": "10", "total_rounds": "3", "total_teams": "3", "country": "int" }, { "cid": 108656, "title": "The Ashes", "abbr": "The Ashes-2017/18", "category": "international", "game_format": "test", "status": "result", "season": "2017/18", "datestart": "2017-11-23", "dateend": "2018-01-08", "country": "int", "total_matches": "3", "total_rounds": "0", "total_teams": "2" }, { "cid": 108885, "title": "Bangladesh Tri-Nation Series", "abbr": "btns-1718", "category": "international", "game_format": "odi", "status": "result", "season": "2017/18", "datestart": "2018-01-13", "dateend": "2018-01-27", "total_matches": "7", "total_rounds": "2", "total_teams": "3", "country": "int" }, { "cid": 111079, "title": "Nidahas Twenty20 Tri-Series", "abbr": "nidahas-twenty20-tri-series-201718", "category": "international", "game_format": "t20i", "status": "result", "season": "2017/18", "datestart": "2018-03-06", "dateend": "2018-03-18", "total_matches": "7", "total_rounds": "2", "total_teams": "3", "country": "int" }, { "cid": 111480, "title": "Asia Cup", "abbr": "ac-1819", "category": "international", "game_format": "odi", "status": "result", "season": "2018/19", "datestart": "2018-09-15", "dateend": "2018-09-28", "total_matches": "13", "total_rounds": "4", "total_teams": "7", "country": "int" } ], "total_items": "49", "total_pages": 5 }, "etag": "08c87396b218b40243e970a5ce1892ea", "modified": "2022-11-17 11:22:42", "datetime": "2022-11-17 11:22:42", "api_version": "2.0" }
Competition Object Overview API.
Request
- Path: /v2/competitons/[cid(competition id)]/
- Method: GET
- Parameters
Parameter
Value
Description
Token
{ACCESS_TOKEN}
API Access token
Yearmonth
String
parameter to list competitions from specific month
Per_page
Integer
number of matches to list in each API request
Paged
Integer
page number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response
squad_type is useful when you are developing an fantasy application and needs to map competition squad with respective team and match
Reference properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
game_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | string | competition first match date |
dateend | string | competition last match date |
country | string | Country ISO Code |
total_matches | string | number of total matches |
total_rounds | string | number of total rounds |
total_teams | string | number of total teams |
table | string | total number of standing tables |
man_of_the_series | array | an array of man of the series in the competition,see man_of_the_series object reference. |
rounds | array | an array of rounds played in the competition,see round object reference. |
venue_list | array | an array of venue details of the match, see venue object properties. |
Man of the series properties
Parameter | Value | Description |
---|---|---|
pid | string | player id |
name | string | player name |
Rounds properties
Parameter | Value | Description |
---|---|---|
rid | integer | round id |
name | string | Round name/title |
order | integer | round sort order |
type | string | round type group, konckout stage, series |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
datestart | string | round first match date |
dateend | string | round last match date |
man_of_the_series | array | an array of man of the series in the competition,see man_of_the_series object reference. |
matches_url | string | api url for matches data |
teams_url | string | api url for teams data |
Venue list properties
Parameter | Value | Description |
---|---|---|
venue_id | integer | venue id |
name | string | venue name |
city | string | venue city Name |
country | string | venue country name |
capacity | string | venue capacity |
"https://rest.entitysport.com/v2/competitions/127096/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "cid": 123213, "title": "Indian Premier League", "abbr": "IPL", "type": "tournament", "category": "domestic", "game_format": "t20", "status": "result", "season": "2022", "datestart": "2022-03-26", "dateend": "2022-05-29", "country": "in", "total_matches": "74", "total_rounds": "1", "total_teams": "10", "table": "0", "man_of_the_series": { "pid": "105", "name": "Jos Buttler" }, "rounds": [ { "rid": 123928, "name": "Indian Premier League", "order": 1, "type": "group", "match_format": "t20", "datestart": "2022-03-26", "dateend": "2022-05-22", "man_of_the_series": { "pid": "105", "name": "Jos Buttler" }, "matches_url": "rounds/123928/matches", "teams_url": "rounds/123928/teams" } ], "venue_list": [ { "venue_id": 17, "name": "Wankhede Stadium, Mumbai", "city": "Mumbai", "country": "India", "capacity": "32000" }, { "venue_id": 18, "name": "Eden Gardens, Kolkata", "city": "Kolkata", "country": "India", "capacity": "66000" }, { "venue_id": 24, "name": "Maharashtra Cricket Association Stadium", "city": "Pune", "country": "India", "capacity": "37,000" }, { "venue_id": 139, "name": "Brabourne Stadium, Mumbai", "city": "Mumbai", "country": "India", "capacity": "20000" }, { "venue_id": 332, "name": "Narendra Modi Stadium, Ahmedabad", "city": "Ahmedabad", "country": "India", "capacity": "110000" }, { "venue_id": 334, "name": "Dr DY Patil Sports Academy, Mumbai", "city": "Mumbai", "country": "India", "capacity": "55000" } ] }, "etag": "6b455076821450f988fcc93fcb2c934d", "modified": "2023-03-23 11:53:01", "datetime": "2023-03-23 11:53:01", "api_version": "3.0" }
A competition is a tour that one country takes on to another country, or a local & international league.
A competition contains playing teams, match schedules, results, team performance & player performance statistical information.
Competition matches node lists all of the scheduled,played,live matches for the specified competition.
Request
- Path: /v2/competitions/[cid(competition id)]/matches/
- Method: GET
- Parameter
Parameter
Value
Descripition
Token
{ACCESS_TOKEN}
API Access token
Per_page
Integer
Number of matches to list in each API request
Paged
Integer
Page Number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.matches:
an array of all available match objects.
Reference properties
Parameter | Value | Description |
---|---|---|
match_id | integer | match id |
title | string | match name/title |
subtitle | string | contains either the match format + number or important event name, ie: Final, 2nd ODI, 1st Quarterfinal. |
format | integer | numerical representation of match format. see match_formats reference, See Cricket Reference |
format_str | string | match format name |
status | string | numerical representation of match status. see match_statuss reference, See Cricket Reference |
status_str | string | match status name. |
status_note | string | a small note of current match state. It would be the winning margin if match completed, could be current required rate if match is on live, and would containg date if match is scheduled. |
verified | string | "true" - Match Data is verified, "false" - Match Data is not verified. For fantasy solutions we suggest keep updating API until you receive verfied: true. |
pre_squad | string | "true" - Fantasy Match Roaster API has managed fantasy credit and player role, "false" - Fantasy Match Roaster API don't have managed fantasy credit and player role. |
game_state | string | numerical representation of match game_state. game state is available for live match only. See Cricket Reference |
game_state_str | string | match game_state name. |
competition | array | an array of parent competition details of the match,see competition object properties. |
team | array | an array of teams participating in the match, see team match properties. |
date_start | date | match start date in in GMT(UTC +0) |
date_end | date | match end date in GMT(UTC +0) |
timestamp_start | integer | match start timestamp in GMT(UTC +0). |
timestamp_end | integer | match end timestamp in GMT(UTC +0). |
venue | array | an array of venue details of the match, see venue object properties. |
umpires | string | umpires of the match. |
referee | string | referee of the match. |
equation | string | match result condition. |
live | string | live match status note. |
win_margin | string | match win margin. |
commentary | interger | numerical representation of commentary available or not for match. |
wagon | interger | numerical representation of wagon available or not for match. |
latest_inning_number | interger | latest or active innings number. |
toss | array | an array of toss details of the match, see toss object properties. |
Competition properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition last match date |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20. See Cricket Reference |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed)See Cricket Reference |
country | string | Country ISO Code |
type | string | competition type, possible values are tour, tournament, series |
Teama properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Teamb properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Venue properties
Parameter | Value | Description |
---|---|---|
name | string | Venue name/title |
location | string | City Name |
timezone | string | number of hours ahead of GMT if value is positive or number of hours behind GMT if value if negative |
Toss properties
Parameter | Value | Description |
---|---|---|
text | string | Toss result text with team name |
winner | integer | team id of toss winning team |
decision | integer | numerical representation of decision made by toss winning team. |
"https://rest.entitysport.com/v2/competitions/121143/matches/?token=ec471071441bb2ac538a0ff901abd249&per_page=50&&paged=1"
{ "status": "ok", "response": { "items": [ { "match_id": 49629, "title": "Sydney Sixers vs Melbourne Stars", "short_title": "SIX vs STA", "subtitle": "1st Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Sixers won by 152 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "213/4 (20 ov)", "scores": "213/4", "overs": "20" }, "teamb": { "team_id": 14206, "name": "Melbourne Stars", "short_name": "STA", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "scores_full": "61/10 (11.1 ov)", "scores": "61/10", "overs": "11.1" }, "date_start": "2021-12-05 08:35:00", "date_end": "2021-12-05 18:35:00", "timestamp_start": 1638693300, "timestamp_end": 1638729300, "date_start_ist": "2021-12-05 14:05:00", "date_end_ist": "2021-12-06 00:05:00", "venue": { "venue_id": "108", "name": "Sydney Cricket Ground", "location": "Sydney", "country": "Australia", "timezone": "-12" }, "umpires": " Michael Graham-Smith (Australia) , Phillip Gillespie (Australia), Gerard Abood (Australia, TV)", "referee": " Dave Gilbert (Australia)", "equation": "", "live": "", "result": "SIX won by 152 runs.", "result_type": 1, "win_margin": "152 runs.", "winning_team_id": 14203, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-03 14:27:34", "verify_time": "2021-12-05 16:55:20", "toss": { "text": "Melbourne Stars won the toss & elected to field", "winner": 14206, "decision": 2 } }, { "match_id": 49630, "title": "Sydney Thunder vs Brisbane Heat", "short_title": "ST vs HEA", "subtitle": "2nd Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Thunder won by 7 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14202, "name": "Sydney Thunder", "short_name": "ST", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "scores_full": "141/3 (17.2 ov)", "scores": "141/3", "overs": "17.2" }, "teamb": { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "scores_full": "140/8 (20 ov)", "scores": "140/8", "overs": "20" }, "date_start": "2021-12-06 08:15:00", "date_end": "2021-12-06 18:15:00", "timestamp_start": 1638778500, "timestamp_end": 1638814500, "date_start_ist": "2021-12-06 13:45:00", "date_end_ist": "2021-12-06 23:45:00", "venue": { "venue_id": "117", "name": "Manuka Oval", "location": "Canberra", "country": "Australia", "timezone": "-12" }, "umpires": "Greg Davidson (Australia) , Tony Wilds (Australia), David Taylor (Australia, TV)", "referee": "Steve Bernard (Australia)", "equation": "", "live": "", "result": "ST won by 7 wickets", "result_type": 1, "win_margin": "7 wickets", "winning_team_id": 14202, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-03 14:29:55", "verify_time": "2021-12-06 17:02:08", "toss": { "text": "Sydney Thunder won the toss & elected to field", "winner": 14202, "decision": 2 } }, { "match_id": 49631, "title": "Melbourne Renegades vs Adelaide Strikers", "short_title": "REN vs STR", "subtitle": "3rd Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Melbourne Renegades won by 2 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14209, "name": "Melbourne Renegades", "short_name": "REN", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "scores_full": "153/9 (20 ov)", "scores": "153/9", "overs": "20" }, "teamb": { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "scores_full": "151/8 (20 ov)", "scores": "151/8", "overs": "20" }, "date_start": "2021-12-07 08:15:00", "date_end": "2021-12-07 18:15:00", "timestamp_start": 1638864900, "timestamp_end": 1638900900, "date_start_ist": "2021-12-07 13:45:00", "date_end_ist": "2021-12-07 23:45:00", "venue": { "venue_id": "106", "name": "Docklands Stadium, Melbourne", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": " Michael Graham-Smith (Australia) , Phillip Gillespie (Australia), Troy Penman (Australia, TV)", "referee": " Bob Stratford (Australia)", "equation": "", "live": "", "result": "REN won by 2 runs.", "result_type": 1, "win_margin": "2 runs.", "winning_team_id": 14209, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-03 14:49:27", "verify_time": "2021-12-07 17:20:45", "toss": { "text": "Melbourne Renegades won the toss & elected to bat", "winner": 14209, "decision": 1 } }, { "match_id": 49632, "title": "Hobart Hurricanes vs Sydney Sixers", "short_title": "HUR vs SIX", "subtitle": "4th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Sixers won by 14 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14212, "name": "Hobart Hurricanes", "short_name": "HUR", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "scores_full": "130/8 (20 ov)", "scores": "130/8", "overs": "20" }, "teamb": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "144/9 (20 ov)", "scores": "144/9", "overs": "20" }, "date_start": "2021-12-08 07:35:00", "date_end": "2021-12-08 17:35:00", "timestamp_start": 1638948900, "timestamp_end": 1638984900, "date_start_ist": "2021-12-08 13:05:00", "date_end_ist": "2021-12-08 23:05:00", "venue": { "venue_id": "223", "name": "Aurora Stadium, Launceston", "location": "Launceston", "country": "Australia", "timezone": "-12" }, "umpires": "Bruce Oxenford (Australia), Darren Close (Australia), Tony Wilds (Australia, TV)", "referee": "Dave Gilbert (Australia)", "equation": "", "live": "", "result": "SIX won by 14 runs.", "result_type": 2, "win_margin": "14 runs.", "winning_team_id": 14203, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-05 15:25:14", "verify_time": "2021-12-08 16:45:06", "toss": { "text": "Hobart Hurricanes won the toss & elected to field", "winner": 14212, "decision": 2 } }, { "match_id": 49633, "title": "Perth Scorchers vs Brisbane Heat", "short_title": "PS vs HEA", "subtitle": "5th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 6 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "157/6 (20 ov)", "scores": "157/6", "overs": "20" }, "teamb": { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "scores_full": "151/10 (19.5 ov)", "scores": "151/10", "overs": "19.5" }, "date_start": "2021-12-08 10:35:00", "date_end": "2021-12-08 20:35:00", "timestamp_start": 1638959700, "timestamp_end": 1638995700, "date_start_ist": "2021-12-08 16:05:00", "date_end_ist": "2021-12-09 02:05:00", "venue": { "venue_id": "174", "name": "Perth Stadium", "location": "Perth", "country": "Australia", "timezone": "-12" }, "umpires": "Gerard Abood (Australia), Greg Davidson (Australia), Simon Lightbody (Australia, TV)", "referee": "Steve Bernard (Australia)", "equation": "", "live": "", "result": "PS won by 6 runs.", "result_type": 1, "win_margin": "6 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-06 15:44:18", "verify_time": "2021-12-08 19:55:21", "toss": { "text": "Perth Scorchers won the toss & elected to bat", "winner": 14214, "decision": 1 } }, { "match_id": 49634, "title": "Adelaide Strikers vs Melbourne Renegades", "short_title": "STR vs REN", "subtitle": "6th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Adelaide Strikers won by 49 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "scores_full": "149/10 (19 ov)", "scores": "149/10", "overs": "19" }, "teamb": { "team_id": 14209, "name": "Melbourne Renegades", "short_name": "REN", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "scores_full": "100/10 (18.4 ov)", "scores": "100/10", "overs": "18.4" }, "date_start": "2021-12-09 08:15:00", "date_end": "2021-12-09 18:15:00", "timestamp_start": 1639037700, "timestamp_end": 1639073700, "date_start_ist": "2021-12-09 13:45:00", "date_end_ist": "2021-12-09 23:45:00", "venue": { "venue_id": "105", "name": "Adelaide Oval", "location": "Adelaide", "country": "Australia", "timezone": "-12" }, "umpires": "Ben Treloar (Australia), Michael Graham-Smith (Australia), Phillip Gillespie (Australia, TV)", "referee": "Steve Davis (Australia)", "equation": "", "live": "", "result": "STR won by 49 runs.", "result_type": 1, "win_margin": "49 runs.", "winning_team_id": 14205, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-07 17:40:29", "verify_time": "2021-12-09 17:13:30", "toss": { "text": "Adelaide Strikers won the toss & elected to bat", "winner": 14205, "decision": 1 } }, { "match_id": 49635, "title": "Melbourne Stars vs Sydney Thunder", "short_title": "STA vs ST", "subtitle": "7th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Melbourne Stars won by 4 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14206, "name": "Melbourne Stars", "short_name": "STA", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "scores_full": "165/4 (20 ov)", "scores": "165/4", "overs": "20" }, "teamb": { "team_id": 14202, "name": "Sydney Thunder", "short_name": "ST", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "scores_full": "161/5 (20 ov)", "scores": "161/5", "overs": "20" }, "date_start": "2021-12-10 08:15:00", "date_end": "2021-12-10 18:15:00", "timestamp_start": 1639124100, "timestamp_end": 1639160100, "date_start_ist": "2021-12-10 13:45:00", "date_end_ist": "2021-12-10 23:45:00", "venue": { "venue_id": "111", "name": "Melbourne Cricket Ground", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Darren Close (Australia), Greg Davidson (Australia), Troy Penman (Australia, TV)", "referee": "Bob Stratford(Australia)", "equation": "", "live": "", "result": "STA won by 4 runs.", "result_type": 1, "win_margin": "4 runs.", "winning_team_id": 14206, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-06 15:17:06", "verify_time": "2021-12-10 17:31:47", "toss": { "text": "Sydney Thunder won the toss & elected to field", "winner": 14202, "decision": 2 } }, { "match_id": 49636, "title": "Sydney Sixers vs Hobart Hurricanes", "short_title": "SIX vs HUR", "subtitle": "8th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Hobart Hurricanes won by 44 runs (DLS).", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "151/4 (18 ov)", "scores": "151/4", "overs": "18" }, "teamb": { "team_id": 14212, "name": "Hobart Hurricanes", "short_name": "HUR", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "scores_full": "213/2 (20 ov)", "scores": "213/2", "overs": "20" }, "date_start": "2021-12-11 07:35:00", "date_end": "2021-12-11 17:35:00", "timestamp_start": 1639208100, "timestamp_end": 1639244100, "date_start_ist": "2021-12-11 13:05:00", "date_end_ist": "2021-12-11 23:05:00", "venue": { "venue_id": "108", "name": "Sydney Cricket Ground", "location": "Sydney", "country": "Australia", "timezone": "-12" }, "umpires": "Bruce Oxenford (Australia), MW Graham-Smith (Australia), Simon Lightbody (Australia, TV)", "referee": "Steve Bernard (Australia)", "equation": "", "live": "", "result": "HUR won by 44 runs (DLS).", "result_type": 2, "win_margin": "44 runs (DLS).", "winning_team_id": 14212, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-08 17:04:07", "verify_time": "2021-12-11 16:40:44", "toss": { "text": "Hobart Hurricanes won the toss & elected to bat", "winner": 14212, "decision": 1 } }, { "match_id": 49637, "title": "Perth Scorchers vs Adelaide Strikers", "short_title": "PS vs STR", "subtitle": "9th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 49 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "195/1 (20 ov)", "scores": "195/1", "overs": "20" }, "teamb": { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "scores_full": "146/10 (17.5 ov)", "scores": "146/10", "overs": "17.5" }, "date_start": "2021-12-11 10:30:00", "date_end": "2021-12-11 20:30:00", "timestamp_start": 1639218600, "timestamp_end": 1639254600, "date_start_ist": "2021-12-11 16:00:00", "date_end_ist": "2021-12-12 02:00:00", "venue": { "venue_id": "174", "name": "Perth Stadium", "location": "Perth", "country": "Australia", "timezone": "-12" }, "umpires": "Nathan Johnstone (Australia), Tony Wilds (Australia), Gerard Abood (Australia, TV)", "referee": "Bob Parry (Australia)", "equation": "", "live": "", "result": "PS won by 49 runs.", "result_type": 1, "win_margin": "49 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-09 14:05:08", "verify_time": "2021-12-11 19:12:34", "toss": { "text": "Perth Scorchers won the toss & elected to bat", "winner": 14214, "decision": 1 } }, { "match_id": 49638, "title": "Sydney Thunder vs Melbourne Stars", "short_title": "ST vs STA", "subtitle": "10th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Melbourne Stars won by 6 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14202, "name": "Sydney Thunder", "short_name": "ST", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "scores_full": "151/5 (20 ov)", "scores": "151/5", "overs": "20" }, "teamb": { "team_id": 14206, "name": "Melbourne Stars", "short_name": "STA", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "scores_full": "155/4 (17.1 ov)", "scores": "155/4", "overs": "17.1" }, "date_start": "2021-12-12 08:15:00", "date_end": "2021-12-12 18:15:00", "timestamp_start": 1639296900, "timestamp_end": 1639332900, "date_start_ist": "2021-12-12 13:45:00", "date_end_ist": "2021-12-12 23:45:00", "venue": { "venue_id": "104", "name": "Sydney Showground Stadium", "location": "Sydney", "country": "Australia", "timezone": "-12" }, "umpires": "Ben Treloar (Australia), Gerard Abood (Australia), Phillip Gillespie (Australia, TV)", "referee": "Dave Gilbert (Australia)", "equation": "", "live": "", "result": "STA won by 6 wickets", "result_type": 2, "win_margin": "6 wickets", "winning_team_id": 14206, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-09 14:23:49", "verify_time": "2021-12-12 17:06:18", "toss": { "text": "Melbourne Stars won the toss & elected to field", "winner": 14206, "decision": 2 } }, { "match_id": 49639, "title": "Brisbane Heat vs Melbourne Renegades", "short_title": "HEA vs REN", "subtitle": "11th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Brisbane Heat won by 5 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "scores_full": "141/5 (16.5 ov)", "scores": "141/5", "overs": "16.5" }, "teamb": { "team_id": 14209, "name": "Melbourne Renegades", "short_name": "REN", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "scores_full": "140/6 (20 ov)", "scores": "140/6", "overs": "20" }, "date_start": "2021-12-13 08:15:00", "date_end": "2021-12-13 18:15:00", "timestamp_start": 1639383300, "timestamp_end": 1639419300, "date_start_ist": "2021-12-13 13:45:00", "date_end_ist": "2021-12-13 23:45:00", "venue": { "venue_id": "292", "name": "Carrara Oval", "location": "Carrara", "country": "Australia", "timezone": "-12" }, "umpires": "Bruce Oxenford (Australia), David Taylor (Australia), Tony Wilds (Australia, TV)", "referee": "Steve Bernard (Australia)", "equation": "", "live": "", "result": "HEA won by 5 wickets", "result_type": 1, "win_margin": "5 wickets", "winning_team_id": 14208, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-10 14:01:18", "verify_time": "2021-12-13 16:57:19", "toss": { "text": "Brisbane Heat won the toss & elected to field", "winner": 14208, "decision": 2 } }, { "match_id": 49640, "title": "Hobart Hurricanes vs Perth Scorchers", "short_title": "HUR vs PS", "subtitle": "12th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 53 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14212, "name": "Hobart Hurricanes", "short_name": "HUR", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "scores_full": "129/10 (19 ov)", "scores": "129/10", "overs": "19" }, "teamb": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "182/5 (20 ov)", "scores": "182/5", "overs": "20" }, "date_start": "2021-12-14 08:15:00", "date_end": "2021-12-14 18:15:00", "timestamp_start": 1639469700, "timestamp_end": 1639505700, "date_start_ist": "2021-12-14 13:45:00", "date_end_ist": "2021-12-14 23:45:00", "venue": { "venue_id": "109", "name": "Bellerive Oval", "location": "Hobart", "country": "Australia", "timezone": "-12" }, "umpires": " Donovan Marius Koch (Australia), Gerard Abood (Australia), Darren Close (Australia, TV)", "referee": " David Johnston (Australia)", "equation": "", "live": "", "result": "PS won by 53 runs.", "result_type": 2, "win_margin": "53 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-11 13:29:36", "verify_time": "2021-12-14 17:16:38", "toss": { "text": "Perth Scorchers won the toss & elected to bat", "winner": 14214, "decision": 1 } }, { "match_id": 49641, "title": "Melbourne Stars vs Sydney Sixers", "short_title": "STA vs SIX", "subtitle": "13th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Sixers won by 7 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14206, "name": "Melbourne Stars", "short_name": "STA", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "scores_full": "177/5 (20 ov)", "scores": "177/5", "overs": "20" }, "teamb": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "182/3 (19.4 ov)", "scores": "182/3", "overs": "19.4" }, "date_start": "2021-12-15 08:15:00", "date_end": "2021-12-15 18:15:00", "timestamp_start": 1639556100, "timestamp_end": 1639592100, "date_start_ist": "2021-12-15 13:45:00", "date_end_ist": "2021-12-15 23:45:00", "venue": { "venue_id": "111", "name": "Melbourne Cricket Ground", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Bruce Oxenford (Australia), Shawn Craig (Australia), Simon Lightbody (Australia, TV)", "referee": "Bob Parry (Australia)", "equation": "", "live": "", "result": "SIX won by 7 wickets", "result_type": 2, "win_margin": "7 wickets", "winning_team_id": 14203, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-11 16:47:00", "verify_time": "2021-12-15 17:06:00", "toss": { "text": "Sydney Sixers won the toss & elected to field", "winner": 14203, "decision": 2 } }, { "match_id": 49642, "title": "Brisbane Heat vs Sydney Thunder", "short_title": "HEA vs ST", "subtitle": "14th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Thunder won by 53 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "scores_full": "143/10 (17.3 ov)", "scores": "143/10", "overs": "17.3" }, "teamb": { "team_id": 14202, "name": "Sydney Thunder", "short_name": "ST", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "scores_full": "196/7 (20 ov)", "scores": "196/7", "overs": "20" }, "date_start": "2021-12-19 08:40:00", "date_end": "2021-12-19 18:40:00", "timestamp_start": 1639903200, "timestamp_end": 1639939200, "date_start_ist": "2021-12-19 14:10:00", "date_end_ist": "2021-12-20 00:10:00", "venue": { "venue_id": "110", "name": "The Gabba", "location": "Brisbane", "country": "Australia", "timezone": "-12" }, "umpires": "Darren Close (Australia), Donovan Koch (Australia), Ben Treloar (Australia, TV)", "referee": "Kepler Wessels (Australia)", "equation": "", "live": "", "result": "ST won by 53 runs.", "result_type": 2, "win_margin": "53 runs.", "winning_team_id": 14202, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-12 13:58:21", "verify_time": "2021-12-19 17:30:25", "toss": { "text": "Brisbane Heat won the toss & elected to field", "winner": 14208, "decision": 2 } }, { "match_id": 49643, "title": "Perth Scorchers vs Hobart Hurricanes", "short_title": "PS vs HUR", "subtitle": "15th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 42 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "167/7 (20 ov)", "scores": "167/7", "overs": "20" }, "teamb": { "team_id": 14212, "name": "Hobart Hurricanes", "short_name": "HUR", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "scores_full": "125/9 (20 ov)", "scores": "125/9", "overs": "20" }, "date_start": "2021-12-20 08:15:00", "date_end": "2021-12-20 18:15:00", "timestamp_start": 1639988100, "timestamp_end": 1640024100, "date_start_ist": "2021-12-20 13:45:00", "date_end_ist": "2021-12-20 23:45:00", "venue": { "venue_id": "174", "name": "Perth Stadium", "location": "Perth", "country": "Australia", "timezone": "-12" }, "umpires": "Gerard Abood (Australia), Tony Wilds (Australia), Nathan Johnstone (Australia, TV)", "referee": "Dave Gilbert (Australia)", "equation": "", "live": "", "result": "PS won by 42 runs.", "result_type": 1, "win_margin": "42 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-13 15:15:19", "verify_time": "2021-12-20 17:06:50", "toss": { "text": "Perth Scorchers won the toss & elected to bat", "winner": 14214, "decision": 1 } }, { "match_id": 49644, "title": "Sydney Sixers vs Adelaide Strikers", "short_title": "SIX vs STR", "subtitle": "16th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Sydney Sixers won by 4 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "150/6 (19.2 ov)", "scores": "150/6", "overs": "19.2" }, "teamb": { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "scores_full": "147/8 (20 ov)", "scores": "147/8", "overs": "20" }, "date_start": "2021-12-21 08:15:00", "date_end": "2021-12-21 18:15:00", "timestamp_start": 1640074500, "timestamp_end": 1640110500, "date_start_ist": "2021-12-21 13:45:00", "date_end_ist": "2021-12-21 23:45:00", "venue": { "venue_id": "108", "name": "Sydney Cricket Ground", "location": "Sydney", "country": "Australia", "timezone": "-12" }, "umpires": "Bruce Oxenford (Australia), David Taylor (Australia), Greg Davidson (Australia, TV)", "referee": "Steve Bernard (Australia)", "equation": "", "live": "", "result": "SIX won by 4 wickets", "result_type": 1, "win_margin": "4 wickets", "winning_team_id": 14203, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-14 14:59:42", "verify_time": "2021-12-21 17:04:44", "toss": { "text": "Adelaide Strikers won the toss & elected to bat", "winner": 14205, "decision": 1 } }, { "match_id": 49645, "title": "Melbourne Renegades vs Perth Scorchers", "short_title": "REN vs PS", "subtitle": "17th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 21 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14209, "name": "Melbourne Renegades", "short_name": "REN", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "scores_full": "185/5 (20 ov)", "scores": "185/5", "overs": "20" }, "teamb": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "206/5 (20 ov)", "scores": "206/5", "overs": "20" }, "date_start": "2021-12-22 08:15:00", "date_end": "2021-12-22 18:15:00", "timestamp_start": 1640160900, "timestamp_end": 1640196900, "date_start_ist": "2021-12-22 13:45:00", "date_end_ist": "2021-12-22 23:45:00", "venue": { "venue_id": "106", "name": "Docklands Stadium, Melbourne", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Ben Treloar (Australia), Donovan Marius Koch (Australia), Shawn Craig (Australia, TV)", "referee": "Bob Parry (Australia)", "equation": "", "live": "", "result": "PS won by 21 runs.", "result_type": 2, "win_margin": "21 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2021-12-15 14:33:41", "verify_time": "2021-12-22 17:07:42", "toss": { "text": "Perth Scorchers won the toss & elected to bat", "winner": 14214, "decision": 1 } }, { "match_id": 49646, "title": "Adelaide Strikers vs Brisbane Heat", "short_title": "STR vs HEA", "subtitle": "18th Match", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Brisbane Heat won by 39 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "scores_full": "169/8 (20 ov)", "scores": "169/8", "overs": "20" }, "teamb": { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "scores_full": "208/7 (20 ov)", "scores": "208/7", "overs": "20" }, "date_start": "2021-12-23 08:15:00", "date_end": "2021-12-23 18:15:00", "timestamp_start": 1640247300, "timestamp_end": 1640283300, "date_start_ist": "2021-12-23 13:45:00", "date_end_ist": "2021-12-23 23:45:00", "venue": {
Competition teams API provides information of all playing participating teams in competition.
Request
- Path: /v2/competitions/[cid(competition id)]/teams/
- Method: GET
- Parameters
Parameter
Value
Description
token
{ACCESS_TOKEN}
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.teams:
an array of all available team objects.response.teams.players:
an array of all available player objects who played on the game for the team.
Reference properties
Parameter | Value | Description |
---|---|---|
teams | array | an array of teams details of the team, see teams match properties. |
total_teams | integer | number of total teams |
Teams properties
Parameter | Value | Description |
---|---|---|
tid | integer | team id |
title | string | team name |
abbr | string | team short name |
thumb_url | string | team logo thumbnail url |
alt_name | string | team alternative name |
type | string | team type Country(International Team) or Club |
logo_url | string | team logo url |
country | string | Country ISO Code |
sex | string | team gender type |
"https://rest.entitysport.com/v2/competitions/121143/teams/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "teams": [ { "tid": 14202, "title": "Sydney Thunder", "abbr": "ST", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "alt_name": "Sydney Thunder", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "country": "au", "sex": "male" }, { "tid": 14203, "title": "Sydney Sixers", "abbr": "SIX", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "alt_name": "Sydney Sixers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "country": "au", "sex": "male" }, { "tid": 14205, "title": "Adelaide Strikers", "abbr": "STR", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "alt_name": "Adelaide Strikers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "country": "au", "sex": "male" }, { "tid": 14206, "title": "Melbourne Stars", "abbr": "STA", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "alt_name": "Melbourne Stars", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "country": "au", "sex": "male" }, { "tid": 14208, "title": "Brisbane Heat", "abbr": "HEA", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "alt_name": "Brisbane Heat", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "country": "au", "sex": "male" }, { "tid": 14209, "title": "Melbourne Renegades", "abbr": "REN", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "alt_name": "Melbourne Renegades", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "country": "au", "sex": "male" }, { "tid": 14212, "title": "Hobart Hurricanes", "abbr": "HUR", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "alt_name": "Hobart Hurricanes", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "country": "au", "sex": "male" }, { "tid": 14214, "title": "Perth Scorchers", "abbr": "PS", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "alt_name": "Perth Scorchers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "country": "au", "sex": "male" }, { "tid": 111066, "title": "TBA", "abbr": "TBA", "alt_name": "TBA", "thumb_url": "", "sex": "male", "type": "", "logo_url": "https://cricket.entitysport.com/assets/plugins/cricket-engine/assets/images/team.png", "country": "" } ], "total_teams": 9 }, "etag": "d13d3317a22fddb66b9460fb286e5dc3", "modified": "2022-11-02 09:18:47", "datetime": "2022-11-02 09:18:47", "api_version": "2.0" }
Competition Squads API provides information of player roaster of participating teams in competition.
Request
- Path: /v2/competitions/[cid(competition id)]/squads/
- Method: GET
- Parameters
Parameter
Value
Descripition
token
{ACCESS_TOKEN}
API Aceess token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.squad_type:
per_match - used for international tours where squad of teams are changes for formats and matches, per_team - used for tournaments where squads of teams remains same and don't change with matches.response.squads:
an array of all available player objects included in team roaster
squad_type is useful when you are developing an fantasy application and needs to map competition squad with respective team and match.
Reference properties
Parameter | Value | Description |
---|---|---|
squad_type | string | completed or per_team squad type |
squads | array | an array of round and squad table details. see squads match properties. |
Squads properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id of respective team squad |
title | string | Team matches title |
mid | string | match id for respective team squad, mid will be empty for squad_type: per_team. |
players | array | an array of player details of the team, see player object properties. |
team | array | an array of team details, see team object properties. |
gmdate | date | Match start date |
Players properties
Parameter | Value | Description |
---|---|---|
pid | integer | player id |
title | string | player name |
short_name | string | player short name |
first_name | string | player first name |
last_name | string | player last name |
middle_name | string | player middle name |
birthdate | date | player date of birth |
birthplace | string | player birth place |
country | string | Country ISO Code |
thumb_url | string | player logo thumbnail url |
logo_url | string | player logo url |
playing_role | string | player playing role |
batting_style | string | player batting style |
bowling_style | string | player bowling style |
fielding_position | string | player fielding position |
recent_match | integer | match id of last played match |
recent_appearance | integer | timestamp of last played match |
fantasy_player_rating | string | player fantasy salary or credit rating |
primary_team | array | an array of team details, |
team | integer | team |
player | string | player player |
Team properties
Parameter | Value | Description |
---|---|---|
tid | integer | team id |
title | string | team name |
abbr | string | team short name |
thumb_url | string | team logo thumbnail url |
logo_url | string | team logo url |
type | string | team type Country(International Team) or Club |
country | string | Country ISO Code |
alt_name | string | team alternative name |
sex | string | team gender type |
"https://rest.entitysport.com/v2/competitions/121143/squads/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "squad_type": "per_team", "squads": [ { "team_id": "14214", "title": "", "mid": "", "gmdate": "", "players": [ { "pid": 1955, "title": "Ashton Agar", "short_name": "AC Agar", "first_name": "Ashton Agar", "last_name": "", "middle_name": "", "birthdate": "1993-10-14", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 18958, "recent_appearance": 1517646000, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43563, "title": "Cameron Bancroft", "short_name": "CT Bancroft", "first_name": "Cameron Bancroft", "last_name": "", "middle_name": "", "birthdate": "1992-11-19", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 18968, "recent_appearance": 1514244600, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43582, "title": "Jason Behrendorff", "short_name": "JP Behrendorff", "first_name": "Jason Behrendorff", "last_name": "", "middle_name": "", "birthdate": "1990-04-20", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Left Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 49029, "title": "Laurie Evans", "short_name": "LJ Evans", "first_name": "Laurie Evans", "last_name": "", "middle_name": "", "birthdate": "1987-10-12", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "England" }, { "pid": 93390, "title": "Aaron Hardie", "short_name": "AM Hardie", "first_name": "Aaron Hardie", "last_name": "", "middle_name": "", "birthdate": "1999-01-07", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 104661, "title": "Peter Hatzoglou", "short_name": "P Hatzoglou", "first_name": "Peter Hatzoglou", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 43610, "title": "Kurtis Patterson", "short_name": "Kurtis Patterson", "first_name": "Kurtis Patterson", "last_name": "", "middle_name": "", "birthdate": "1993-05-05", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 83, "title": "Mitchell Marsh", "short_name": "MR Marsh", "first_name": "Mitchell Marsh", "last_name": "", "middle_name": "", "birthdate": "1991-10-20", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 18968, "recent_appearance": 1514244600, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 1921, "title": "Colin Munro", "short_name": "C Munro", "first_name": "Colin Munro", "last_name": "", "middle_name": "", "birthdate": "1987-03-11", "birthplace": "", "country": "nz", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "New Zealand" }, { "pid": 43584, "title": "Ashton Turner", "short_name": "AJ Turner", "first_name": "Ashton Turner", "last_name": "", "middle_name": "", "birthdate": "1993-01-25", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43631, "title": "Jhye Richardson", "short_name": "JA Richardson", "first_name": "Jhye Richardson", "last_name": "", "middle_name": "", "birthdate": "1996-09-20", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast", "fielding_position": "", "recent_match": 18971, "recent_appearance": 1516332000, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" }, { "pid": 55846, "title": "Josh Inglis", "short_name": "JP Inglis", "first_name": "Josh Inglis", "last_name": "", "middle_name": "", "birthdate": "1995-03-04", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 1963, "title": "Andrew Tye", "short_name": "AJ Tye", "first_name": "Andrew Tye", "last_name": "", "middle_name": "", "birthdate": "1986-12-12", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 18970, "recent_appearance": 1515900000, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 58304, "title": "Lance Morris", "short_name": "LR Morris", "first_name": "Lance Morris", "last_name": "", "middle_name": "", "birthdate": "1998-03-28", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55898, "title": "Matthew Kelly", "short_name": "M Kelly", "first_name": "Matthew Kelly", "last_name": "", "middle_name": "", "birthdate": "1994-12-07", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55844, "title": "Nick Hobson", "short_name": "NR Hobson", "first_name": "Nick Hobson", "last_name": "", "middle_name": "", "birthdate": "1994-08-22", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 96765, "title": "Cooper Connolly", "short_name": "Cooper Connolly", "first_name": "Cooper Connolly", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43366, "title": "Tymal Mills", "short_name": "TS Mills", "first_name": "Tymal Mills", "last_name": "", "middle_name": "", "birthdate": "1992-08-12", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Left Arm Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "England" }, { "pid": 53627, "title": "David Moody", "short_name": "DJM Moody", "first_name": "David Moody", "last_name": "", "middle_name": "", "birthdate": "1995-04-28", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 60103, "title": "Chris Sabburg", "short_name": "CJM Sabburg", "first_name": "Chris Sabburg", "last_name": "", "middle_name": "", "birthdate": "1990-01-02", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 113455, "title": "Jake Carder", "short_name": "Jake Carder", "first_name": "Jake Carder", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" } ], "team": { "tid": 14214, "title": "Perth Scorchers", "abbr": "PS", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "alt_name": "Perth Scorchers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14212", "title": "", "mid": "", "gmdate": "", "players": [ { "pid": 93389, "title": "Tim David", "short_name": "Tim David", "first_name": "Tim David", "last_name": "", "middle_name": "", "birthdate": "1996-03-16", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 48498, "title": "Caleb Jewell", "short_name": "CP Jewell", "first_name": "Caleb Jewell", "last_name": "", "middle_name": "", "birthdate": "1997-04-21", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" }, { "pid": 84301, "title": "D'Arcy Short", "short_name": "DJM Short", "first_name": "D'Arcy Short", "last_name": "", "middle_name": "", "birthdate": "1990-08-09", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 18958, "recent_appearance": 1517646000, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 93157, "title": "Macalister Wright", "short_name": "M Wright", "first_name": "Macalister Wright", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 90887, "title": "Harry Brook", "short_name": "Harry Brook", "first_name": "Harry Brook", "last_name": "", "middle_name": "", "birthdate": "1999-02-22", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "England" }, { "pid": 104656, "title": "Mitchell Owen", "short_name": "Mitchell Owen", "first_name": "Mitchell Owen", "last_name": "", "middle_name": "", "birthdate": "2001-09-16", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 50507, "title": "Jordan Thompson", "short_name": "JA Thompson", "first_name": "Jordan Thompson", "last_name": "", "middle_name": "", "birthdate": "1996-10-09", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9.5, "t": 0, "nationality": "England" }, { "pid": 43522, "title": "Matthew Wade", "short_name": "MS Wade", "first_name": "Matthew Wade", "last_name": "", "middle_name": "", "birthdate": "1987-12-26", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 43491, "title": "Peter Handscomb", "short_name": "PSP Handscomb", "first_name": "Peter Handscomb", "last_name": "", "middle_name": "", "birthdate": "1991-04-26", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" }, { "pid": 43625, "title": "Ben McDermott", "short_name": "BR McDermott", "first_name": "Ben McDermott", "last_name": "", "middle_name": "", "birthdate": "1994-12-12", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 43497, "title": "Scott Boland", "short_name": "SM Boland", "first_name": "Scott Boland", "last_name": "", "middle_name": "", "birthdate": "1989-04-11", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 96089, "title": "Nathan Ellis", "short_name": "Nathan Ellis", "first_name": "Nathan Ellis", "last_name": "", "middle_name": "", "birthdate": "1994-09-22", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 93329, "title": "Riley Meredith", "short_name": "Riley Meredith", "first_name": "Riley Meredith", "last_name": "", "middle_name": "", "birthdate": "1996-06-21", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43565, "title": "Joel Paris", "short_name": "JS Paris", "first_name": "Joel Paris", "last_name": "", "middle_name": "", "birthdate": "1992-12-11", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 97084, "title": "Wil Parker", "short_name": "Wil Parker", "first_name": "Wil Parker", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 1080, "title": "Sandeep Lamichhane", "short_name": "Sandeep Lamichhane", "first_name": "Sandeep Lamichhane", "last_name": "", "middle_name": "", "birthdate": "2000-08-02", "birthplace": "", "country": "np", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Nepal" }, { "pid": 107596, "title": "Josh Kann", "short_name": "Joshua Kann", "first_name": "Josh Kann", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9.5, "t": 0, "nationality": "Australia" }, { "pid": 57478, "title": "Tom Rogers", "short_name": "T Rogers", "first_name": "Tom Rogers", "last_name": "", "middle_name": "", "birthdate": "1994-03-03", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 94961, "title": "Jordan Cox", "short_name": "Jordan Cox", "first_name": "Jordan Cox", "last_name": "", "middle_name": "", "birthdate": "2000-10-21", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "England" }, { "pid": 93520, "title": "Tom Lammonby", "short_name": "TA Lammonby", "first_name": "Tom Lammonby", "last_name": "", "middle_name": "", "birthdate": "2000-06-02", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Medium Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "England" }, { "pid": 50835, "title": "Tom Andrews", "short_name": "Tom Andrews", "first_name": "Tom Andrews", "last_name": "", "middle_name": "", "birthdate": "1994-10-07", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55869, "title": "Gabe Bell", "short_name": "GT Bell", "first_name": "Gabe Bell", "last_name": "", "middle_name": "", "birthdate": "1995-07-03", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 113281, "title": "Will Sanders", "short_name": "Will Sanders", "first_name": "Will Sanders", "last_name": "", "middle_name": "", "birthdate": "0000-00-00", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" } ], "team": { "tid": 14212, "title": "Hobart Hurricanes", "abbr": "HUR", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "alt_name": "Hobart Hurricanes", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14205", "title": "", "mid": "", "gmdate": "", "players": [ { "pid": 90563, "title": "Ryan Gibson", "short_name": "Ryan Gibson", "first_name": "Ryan Gibson", "last_name": "", "middle_name": "", "birthdate": "1993-12-30", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 52897, "title": "Matt Renshaw", "short_name": "Matt Renshaw", "first_name": "Matt Renshaw", "last_name": "", "middle_name": "", "birthdate": "1996-03-28", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55105, "title": "Jake Weatherald", "short_name": "J Weatherald", "first_name": "Jake Weatherald", "last_name": "", "middle_name": "", "birthdate": "1994-11-04", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 43546, "title": "Jonathan Wells", "short_name": "JW Wells", "first_name": "Jonathan Wells", "last_name": "", "middle_name": "", "birthdate": "1988-08-13", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 43471, "title": "Travis Head", "short_name": "TM Head", "first_name": "Travis Head", "last_name": "", "middle_name": "", "birthdate": "1993-12-29", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 18970, "recent_appearance": 1515900000, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" }, { "pid": 96540, "title": "Liam Scott", "short_name": "Liam Scott", "first_name": "Liam Scott", "last_name": "", "middle_name": "", "birthdate": "2000-12-12", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 52871, "title": "Matthew Short", "short_name": "MW Short", "first_name": "Matthew Short", "last_name": "", "middle_name": "", "birthdate": "1995-11-08", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 55106, "title": "Alex Carey", "short_name": "AT Carey", "first_name": "Alex Carey", "last_name": "", "middle_name": "", "birthdate": "1991-08-27", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Left hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55871, "title": "Harry Nielsen", "short_name": "HJ Nielsen", "first_name": "Harry Nielsen", "last_name": "", "middle_name": "", "birthdate": "1995-05-03", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 48523, "title": "Wes Agar", "short_name": "WA Agar", "first_name": "Wes Agar", "last_name": "", "middle_name": "", "birthdate": "1997-02-05", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43451, "title": "Fawad Ahmed", "short_name": "Fawad Ahmed", "first_name": "Fawad Ahmed", "last_name": "", "middle_name": "", "birthdate": "1982-02-05", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" }, { "pid": 55883, "title": "Harry Conway", "short_name": "Harry Conway", "first_name": "Harry Conway", "last_name": "", "middle_name": "", "birthdate": "1992-09-17", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 1384, "title": "George Garton", "short_name": "GHS Garton", "first_name": "George Garton", "last_name": "", "middle_name": "", "birthdate": "1997-04-15", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "England" }, { "pid": 93357, "title": "Spencer Johnson", "short_name": "SH Johnson", "first_name": "Spencer Johnson", "last_name": "", "middle_name": "", "birthdate": "1995-12-16", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 1157, "title": "Rashid Khan", "short_name": "Rashid Khan", "first_name": "Rashid Khan", "last_name": "", "middle_name": "", "birthdate": "1998-09-20", "birthplace": "", "country": "af", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "Afghanistan" }, { "pid": 55847, "title": "Liam O'Connor", "short_name": "LN O'Connor", "first_name": "Liam O'Connor", "last_name": "", "middle_name": "", "birthdate": "1993-06-20", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 49081, "title": "Peter Siddle", "short_name": "PM Siddle", "first_name": "Peter Siddle", "last_name": "", "middle_name": "", "birthdate": "1984-11-25", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 43630, "title": "Daniel Worrall", "short_name": "Daniel Worrall", "first_name": "Daniel Worrall", "last_name": "", "middle_name": "", "birthdate": "1991-07-10", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" }, { "pid": 96621, "title": "Daniel Drew", "short_name": "Daniel Drew", "first_name": "Daniel Drew", "last_name": "", "middle_name": "", "birthdate": "1996-05-22", "birthplace": "",
Competition standings node provides standing table for all of the round or groups for the specified competition.
Request
- Path: /v2/competitions/[cid(competition id)]/standings/
- Method: GET
- Parameters
Parameter
Value
Description
token
{ACCESS_TOKEN}
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response.response.standing_type:
would return either "completed", "per_round".completed:
indicates the standing is calculated for the full season, not group or round wise (ie: Ranji Throphy).per_round:
indicates the tournament was played in groups, and the standing is available group wise (ie: Worldcup Group Stage).
response.standings:
an array of standings data. each standing array item contain a team object. if tournament was played in round, standings will be come inside rounds array.
Reference properties
Parameter | Value | Description |
---|---|---|
standing_type | string | completed or per_round standing type |
standings | array | an array of round and standing table details, see round properties, see standing properties. |
Standings properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
played | integer | total number of player matches by team |
win | integer | total number of won matches |
loss | integer | total number of lossed matches |
draw | integer | total number of drawn matches |
nr | integer | total number of no result matches |
overfor | string | total number of overs bowled by team |
runfor | integer | total number of runs scored by team |
overagainst | string | total number of overs bowled by opponent teams |
runagainst | integer | total number of runs scored by opponent teams |
netrr | string | total number of no result matches |
points | integer | total number of no result matches |
lastfivematch | integer | total number of last five match |
lastfivematchresult | string | total number of last five match result |
quality | string | |
team | array | an array of team details, see team object properties. |
Round properties
Parameter | Value | Description |
---|---|---|
rid | integer | round id |
order | integer | round sort order |
name | string | Round name/title |
type | string | round type group,series,knockout |
match_format | string | matches format of this round |
datestart | date | round first match date |
dateend | date | round last match date |
Team properties
Parameter | Value | Description |
---|---|---|
tid | integer | team id |
title | string | team name |
abbr | string | team short name |
thumb_url | string | team logo thumbnail url |
alt_name | string | team alternative name |
type | string | team type Country(International Team) or Club |
logo_url | string | team logo url |
country | string | Country ISO Code |
sex | string | team player gender type |
"https://rest.entitysport.com/v2/competitions/121143/standings/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "standing_type": "per_round", "standings": [ { "round": { "rid": 122373, "order": 1, "name": "BBL", "type": "group", "match_format": "t20", "datestart": "2021-12-05", "dateend": "2022-01-19" }, "standings": [ { "team_id": "14214", "played": "14", "win": "11", "loss": "3", "draw": "0", "nr": "0", "overfor": "272.3", "runfor": "2312", "overagainst": "274.0", "runagainst": "2072", "netrr": "0.922", "points": "22", "lastfivematch": "49682,49677,52452,49670,49664", "lastfivematchresult": "W,L,W,W,L", "quality": "false", "team": { "tid": 14214, "title": "Perth Scorchers", "abbr": "PS", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "alt_name": "Perth Scorchers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14203", "played": "14", "win": "9", "loss": "4", "draw": "0", "nr": "1", "overfor": "253.0", "runfor": "2084", "overagainst": "256.3", "runagainst": "1828", "netrr": "1.110", "points": "19", "lastfivematch": "52630,49681,49678,49673,49670", "lastfivematchresult": "W,L,W,W,L", "quality": "false", "team": { "tid": 14203, "title": "Sydney Sixers", "abbr": "SIX", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "alt_name": "Sydney Sixers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14202", "played": "14", "win": "9", "loss": "5", "draw": "0", "nr": "0", "overfor": "271.4", "runfor": "2311", "overagainst": "271.1", "runagainst": "2141", "netrr": "0.611", "points": "18", "lastfivematch": "49683,49678,49675,49672,49668", "lastfivematchresult": "W,L,L,W,W", "quality": "false", "team": { "tid": 14202, "title": "Sydney Thunder", "abbr": "ST", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "alt_name": "Sydney Thunder", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14206", "played": "14", "win": "7", "loss": "7", "draw": "0", "nr": "0", "overfor": "264.4", "runfor": "2144", "overagainst": "277.4", "runagainst": "2311", "netrr": "-0.222", "points": "14", "lastfivematch": "49684,49679,52451,49676,52452", "lastfivematchresult": "W,W,L,W,L", "quality": "false", "team": { "tid": 14206, "title": "Melbourne Stars", "abbr": "STA", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "alt_name": "Melbourne Stars", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14212", "played": "14", "win": "7", "loss": "7", "draw": "0", "nr": "0", "overfor": "275.5", "runfor": "2231", "overagainst": "270.3", "runagainst": "2276", "netrr": "-0.326", "points": "14", "lastfivematch": "49684,49680,49675,49672,49669", "lastfivematchresult": "L,W,W,L,W", "quality": "false", "team": { "tid": 14212, "title": "Hobart Hurricanes", "abbr": "HUR", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "alt_name": "Hobart Hurricanes", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14205", "played": "14", "win": "6", "loss": "8", "draw": "0", "nr": "0", "overfor": "269.4", "runfor": "2125", "overagainst": "277.0", "runagainst": "2117", "netrr": "0.237", "points": "12", "lastfivematch": "49681,52451,49677,49674,49671", "lastfivematchresult": "W,W,W,W,L", "quality": "false", "team": { "tid": 14205, "title": "Adelaide Strikers", "abbr": "STR", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "alt_name": "Adelaide Strikers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "country": "au", "sex": "male" } }, { "team_id": "14209", "played": "14", "win": "3", "loss": "10", "draw": "0", "nr": "1", "overfor": "253.0", "runfor": "1760", "overagainst": "248.1", "runagainst": "2093", "netrr": "-1.477", "points": "7", "lastfivematch": "49683,49680,49676,49673,49668", "lastfivematchresult": "L,L,L,L,L", "quality": "false", "team": { "tid": 14209, "title": "Melbourne Renegades", "abbr": "REN", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades.png", "alt_name": "Melbourne Renegades", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png", "country": "au", "sex": "male" } }, { "team_id": "14208", "played": "14", "win": "3", "loss": "11", "draw": "0", "nr": "0", "overfor": "276.5", "runfor": "2042", "overagainst": "262.1", "runagainst": "2171", "netrr": "-0.905", "points": "6", "lastfivematch": "52630,49682,49679,49674,49669", "lastfivematchresult": "L,L,L,L,L", "quality": "false", "team": { "tid": 14208, "title": "Brisbane Heat", "abbr": "HEA", "thumb_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "alt_name": "Brisbane Heat", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png", "country": "au", "sex": "male" } } ] } ] }, "etag": "611416cea3055a5222f483d370b3e0e1", "modified": "2022-11-02 09:18:56", "datetime": "2022-11-02 09:18:56", "api_version": "2.0" }
Competition stats provides information of players statistics and performance. As well as team wise player statistics. The root stats path provide a list of all available statistics available for the competition.
Request
- Path: /v2/competitions/[cid(competition id)]/stats/
- Method: GET
- Parameters
Parameter
Value
Description
token
{ACCESS_TOKEN}
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.formats:
an array of match formats played. stat can be filtered with this informationresponse.stat_types:
an array of stat types, supplied in group (batting, bowling, team)
Reference properties
Parameter | Value | Description |
---|---|---|
stats | array | array of batsman, bowler, team statistic data, see stats type properties |
total_items | integer | total number of elements available |
total_pages | integer | total number of pages with data |
formats | string | formats of matches |
stat_types | array | an array of batting and bowling statistic type, see stats type properties |
Formats properties
Parameter | Value | Description |
---|---|---|
test | string | Test formats |
odi | string | Odi formats |
t20i | string | T20i formats |
t20 | string | T20 formats |
lista | string | Lista formats |
firstclass | string | Firstclass formats |
t10 | string | T10 formats |
Stat types properties
Parameter | Value | Description |
---|---|---|
group_title | string | statistics types of Batting, Bowling, Team |
types | string | A set of string objects for respective group title |
Types properties
Parameter | Value | Description |
---|---|---|
batting_most_runs | string | Most Runs |
batting_most_runs_innings | string | Highest Individual Score |
batting_highest_strikerate | string | Highest Strike Rates |
batting_highest_strikerate_innings | string | Highest Strike Rates (Innings) |
batting_highest_average | string | Highest Average |
batting_most_run100 | string | Most Centuries |
batting_most_run50 | string | Most Fifties |
batting_most_run6 | string | Most Sixes |
batting_most_run6_innings | string | Most Sixes (Innings) |
batting_most_run4 | string | Most Fours |
batting_most_run4_innings | string | Most Fours(Innings) |
"https://rest.entitysport.com/v2/competitions/121143/stats/?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "stats": [], "total_items": 0, "total_pages": 0, "formats": [ "t20" ], "stat_types": [ { "group_title": "Batting", "types": { "batting_most_runs": "Most Runs", "batting_most_runs_innings": "Highest Individual Score", "batting_highest_strikerate": "Highest Strike Rates", "batting_highest_strikerate_innings": "Highest Strike Rates (Innings)", "batting_highest_average": "Highest Average", "batting_most_run100": "Most Centuries", "batting_most_run50": "Most Fifties", "batting_most_run6": "Most Sixes", "batting_most_run6_innings": "Most Sixes (Innings)", "batting_most_run4": "Most Fours", "batting_most_run4_innings": "Most Fours (Innings)" } }, { "group_title": "Bowling", "types": { "bowling_top_wicket_takers": "Top Wicket Takers", "bowling_best_economy_rates": "Best Economy Rates", "bowling_best_economy_rates_innings": "Best Economy Rates (Innings)", "bowling_best_bowling_figures": "Best Bowling Figures", "bowling_best_strike_rates": "Best Strike Rates", "bowling_best_strike_rates_innings": "Best Strike Rates (Innings)", "bowling_best_averages": "Best Averages", "bowling_most_runs_conceded_innings": "Most runs conceded in an innings", "bowling_four_wickets": "Four Wickets", "bowling_five_wickets": "Five Wickets", "bowling_maidens": "Maidens" } }, { "group_title": "Team", "types": { "team_total_runs": "Total Runs", "team_total_run100": "Most Centuries", "team_total_run50": "Most Fifties", "team_total_wickets": "Total Wickets" } } ] }, "etag": "28a5389e9042e982262684e1963ecc9a", "modified": "2022-11-02 09:19:35", "datetime": "2022-11-02 09:19:35", "api_version": "2.0" }
Provides information of a specific type of stats, ie batting_most_runs, bowling_best_averages, team_total_runs. It's root stats path provide a list of all available statistics available for the competition.
Request
- Path: /v2/competitions/[cid(competition id)]/stats/[STAT_TYPE]
- Method: GET
- Parameters
Parameter
Value
Description
token
{ACCESS_TOKEN}
API Access token
format
string
format string available in competition stats type
per_page
integer
Number of players to list in each API request
token
integer
Page Number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response
Reference properties
Parameter | Value | Description |
---|---|---|
stats | array | array of batsman, bowler, team statistic data, see Batting Stats properties |
total_items | integer | total number of elements available |
total_pages | integer | total number of pages with data |
formats | string | formats of matches |
stat_types | array | an array of batting and bowling statistic type, see stats type properties |
format | string | formats of matches |
teams | array | an array of teams, see team propeties |
Stats properties
Parameter | Value | Description |
---|---|---|
matches | integer | Number of matches played |
innings | integer | Number of innings batsman played |
notout | integer | Number of times batsman remained not out |
runs | integer | total number of runs scored by batsman in the competition |
balls | integer | total number of balls played by batsman |
highest | integer | Highest runs scored by batsman in a single inning |
run100 | integer | Number of times 100 or more runs scored by batsman in total innings played |
run50 | integer | Number of times 50 or more runs scored by batsman in total innings played |
run4 | integer | Total number of 4s hit by batsman in competition |
run6 | integer | Total number of 6s hit by batsman in competition |
average | string | Batsman batting average in competition |
strike | string | Batsman batting strike rate in competition |
catches | integer | Catches taken by player |
stumpings | integer | stumpings comepleted by player as wicketkeeper |
updated | date | time and date when stats updated. |
fastest50balls | integer | fastest 50 balls |
fastest100balls | integer | fastest 100 balls |
team | array | a set of team objects,see team properties |
player | array | a set of player objects, see player properties |
Team properties
Parameter | Value | Description |
---|---|---|
tid | integer | team id |
title | string | team name |
abbr | string | team short name |
thumb_url | string | team logo thumbnail url |
alt_name | string | team alternative name |
type | string | team type Country(International Team) or Club |
logo_url | string | team logo url |
country | string | Country ISO Code |
sex | string | team player gender type |
Player properties
Parameter | Value | Description |
---|---|---|
pid | integer | player id |
title | string | player name |
short_name | string | player short name |
first_name | string | player first name |
last_name | string | player last name |
middle_name | string | player middle name |
birthdate | date | player date of birth |
birthplace | string | player birth place |
country | string | Country ISO Code |
primary_team | array | primary team, see primary time properties. |
thumb_url | string | player logo thumbnail url |
logo_url | string | player logo url |
playing_role | string | player playing role |
batting_style | string | player batting style |
bowling_style | string | player bowling style |
fielding_position | string | player fielding position |
recent_match | integer | match id of last played match |
recent_appearance | integer | timestamp of last played match |
fantasy_player_rating | integer | player fantasy rating |
nationality | string | player nationality |
Formats properties
Parameter | Value | Description |
---|---|---|
t20 | string | t20 format |
test | string | test format |
odi | string | odi format |
t20i | string | t20i format |
lista | string | lista format |
firstclass | string | firstclass format |
t10 | string | t10 format |
Stat types properties
Parameter | Value | Description |
---|---|---|
group_title | string | statistics type of bowling batting team. |
types | array | competition type, possible values are tour, tournament, series. see types properties |
Types properties
Parameter | Value | Description |
---|---|---|
batting_most_runs | string | Most Runs |
batting_most_runs_innings | string | Highest Individual Score |
batting_highest_strikerate | string | Highest Strike Rates |
batting_highest_strikerate_innings | string | Highest Strike Rates (Innings) |
batting_highest_average | string | Highest Average |
batting_most_run100 | string | Most Centuries |
batting_most_run50 | string | Most Fifties |
batting_most_run6 | string | Most Sixes |
batting_most_run6_innings | string | Most Sixes (Innings) |
batting_most_run4 | string | Most Fours |
batting_most_run4_innings | string | Most Fours (Innings) |
Teams properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
country_iso | string | Country ISO Code |
type | string | team type Country(International Team) or Club |
logo_url | string | team logo url |
"https://rest.entitysport.com/v2/competitions/121143/stats/batting_most_runs?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "stats": [ { "matches": 18, "innings": 18, "notout": 1, "runs": 615, "balls": 387, "highest": 89, "run100": 0, "run50": 4, "run4": 45, "run6": 33, "average": "36.18", "strike": "158.91", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14205, "title": "Adelaide Strikers", "abbr": "STR", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "alt_name": "Adelaide Strikers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "country": "au", "sex": "male" }, "player": { "pid": 52871, "title": "Matthew Short", "short_name": "MW Short", "first_name": "Matthew Short", "last_name": "", "middle_name": "", "birthdate": "1995-11-08", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" } }, { "matches": 19, "innings": 19, "notout": 5, "runs": 586, "balls": 446, "highest": 73, "run100": 0, "run50": 5, "run4": 44, "run6": 11, "average": "41.86", "strike": "131.39", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14205, "title": "Adelaide Strikers", "abbr": "STR", "thumb_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "alt_name": "Adelaide Strikers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png", "country": "au", "sex": "male" }, "player": { "pid": 43546, "title": "Jonathan Wells", "short_name": "JW Wells", "first_name": "Jonathan Wells", "last_name": "", "middle_name": "", "birthdate": "1988-08-13", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" } }, { "matches": 14, "innings": 14, "notout": 1, "runs": 583, "balls": 378, "highest": 127, "run100": 2, "run50": 3, "run4": 47, "run6": 29, "average": "44.85", "strike": "154.23", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14212, "title": "Hobart Hurricanes", "abbr": "HUR", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "alt_name": "Hobart Hurricanes", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 43625, "title": "Ben McDermott", "short_name": "BR McDermott", "first_name": "Ben McDermott", "last_name": "", "middle_name": "", "birthdate": "1994-12-12", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" } }, { "matches": 16, "innings": 16, "notout": 3, "runs": 500, "balls": 426, "highest": 73, "run100": 0, "run50": 3, "run4": 40, "run6": 13, "average": "38.46", "strike": "117.37", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14212, "title": "Hobart Hurricanes", "abbr": "HUR", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes.png", "alt_name": "Hobart Hurricanes", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 84301, "title": "D'Arcy Short", "short_name": "DJM Short", "first_name": "D'Arcy Short", "last_name": "", "middle_name": "", "birthdate": "1990-08-09", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 18958, "recent_appearance": 1517646000, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" } }, { "matches": 14, "innings": 14, "notout": 2, "runs": 484, "balls": 303, "highest": 154, "run100": 2, "run50": 1, "run4": 49, "run6": 14, "average": "40.33", "strike": "159.74", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14206, "title": "Melbourne Stars", "abbr": "STA", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "alt_name": "Melbourne Stars", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 81, "title": "Glenn Maxwell", "short_name": "GJ Maxwell", "first_name": "Glenn Maxwell", "last_name": "", "middle_name": "", "birthdate": "1988-10-14", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 18974, "recent_appearance": 1517109600, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" } }, { "matches": 15, "innings": 12, "notout": 3, "runs": 445, "balls": 337, "highest": 91, "run100": 0, "run50": 3, "run4": 36, "run6": 13, "average": "49.44", "strike": "132.05", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14202, "title": "Sydney Thunder", "abbr": "ST", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder.png", "alt_name": "Sydney Thunder", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 48520, "title": "Jason Sangha", "short_name": "Jason Sangha", "first_name": "Jason Sangha", "last_name": "", "middle_name": "", "birthdate": "1999-09-08", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Leg Spin", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "t": 0, "nationality": "Australia" } }, { "matches": 16, "innings": 15, "notout": 3, "runs": 440, "balls": 330, "highest": 76, "run100": 0, "run50": 2, "run4": 36, "run6": 12, "average": "36.67", "strike": "133.33", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14203, "title": "Sydney Sixers", "abbr": "SIX", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "alt_name": "Sydney Sixers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 748, "title": "Moises Henriques", "short_name": "Moises Henriques", "first_name": "Moises Henriques", "last_name": "", "middle_name": "", "birthdate": "1987-02-01", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" } }, { "matches": 15, "innings": 14, "notout": 1, "runs": 429, "balls": 299, "highest": 99, "run100": 0, "run50": 4, "run4": 35, "run6": 16, "average": "33.00", "strike": "143.48", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14203, "title": "Sydney Sixers", "abbr": "SIX", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "alt_name": "Sydney Sixers", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 93388, "title": "Josh Philippe", "short_name": "JR Philippe", "first_name": "Josh Philippe", "last_name": "", "middle_name": "", "birthdate": "1997-06-01", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "t": 0, "nationality": "Australia" } }, { "matches": 14, "innings": 14, "notout": 0, "runs": 428, "balls": 288, "highest": 85, "run100": 0, "run50": 5, "run4": 37, "run6": 17, "average": "30.57", "strike": "148.61", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14206, "title": "Melbourne Stars", "abbr": "STA", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "alt_name": "Melbourne Stars", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 43362, "title": "Joe Clarke", "short_name": "JM Clarke", "first_name": "Joe Clarke", "last_name": "", "middle_name": "", "birthdate": "1996-05-26", "birthplace": "", "country": "en", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "England" } }, { "matches": 15, "innings": 14, "notout": 2, "runs": 409, "balls": 284, "highest": 79, "run100": 0, "run50": 1, "run4": 22, "run6": 25, "average": "34.08", "strike": "144.01", "catches": 0, "stumpings": 0, "updated": "2022-01-28 17:40:00", "fastest50balls": 0, "fastest100balls": 0, "team": { "tid": 14206, "title": "Melbourne Stars", "abbr": "STA", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars.png", "alt_name": "Melbourne Stars", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png", "country": "au", "sex": "male" }, "player": { "pid": 55591, "title": "Hilton Cartwright", "short_name": "HWR Cartwright", "first_name": "Hilton Cartwright", "last_name": "", "middle_name": "", "birthdate": "1992-02-14", "birthplace": "", "country": "au", "primary_team": [], "thumb_url": "", "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "t": 0, "nationality": "Australia" } } ], "total_items": 170, "total_pages": 17, "formats": [ "t20" ], "stat_types": [ { "group_title": "Batting", "types": { "batting_most_runs": "Most Runs", "batting_most_runs_innings": "Highest Individual Score", "batting_highest_strikerate": "Highest Strike Rates", "batting_highest_strikerate_innings": "Highest Strike Rates (Innings)", "batting_highest_average": "Highest Average", "batting_most_run100": "Most Centuries", "batting_most_run50": "Most Fifties", "batting_most_run6": "Most Sixes", "batting_most_run6_innings": "Most Sixes (Innings)", "batting_most_run4": "Most Fours", "batting_most_run4_innings": "Most Fours (Innings)" } }, { "group_title": "Bowling", "types": { "bowling_top_wicket_takers": "Top Wicket Takers", "bowling_best_economy_rates": "Best Economy Rates", "bowling_best_economy_rates_innings": "Best Economy Rates (Innings)", "bowling_best_bowling_figures": "Best Bowling Figures", "bowling_best_strike_rates": "Best Strike Rates", "bowling_best_strike_rates_innings": "Best Strike Rates (Innings)", "bowling_best_averages": "Best Averages", "bowling_most_runs_conceded_innings": "Most runs conceded in an innings", "bowling_four_wickets": "Four Wickets", "bowling_five_wickets": "Five Wickets", "bowling_maidens": "Maidens" } }, { "group_title": "Team", "types": { "team_total_runs": "Total Runs", "team_total_run100": "Most Centuries", "team_total_run50": "Most Fifties", "team_total_wickets": "Total Wickets" } } ], "format": "t20", "teams": [ { "team_id": 14202, "name": "Sydney Thunder", "short_name": "ST", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Thunder-32x32.png" }, { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png" }, { "team_id": 14205, "name": "Adelaide Strikers", "short_name": "STR", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2020/12/Adelaide-Strikers.png" }, { "team_id": 14206, "name": "Melbourne Stars", "short_name": "STA", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Stars-32x32.png" }, { "team_id": 14208, "name": "Brisbane Heat", "short_name": "HEA", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2022/04/Brisbane-Heat.png" }, { "team_id": 14209, "name": "Melbourne Renegades", "short_name": "REN", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Melbourne-Renegades-32x32.png" }, { "team_id": 14212, "name": "Hobart Hurricanes", "short_name": "HUR", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Hobart-Hurricanes-32x32.png" }, { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "country_iso": "au", "type": "club", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png" } ] }, "etag": "bc6b8cd5cecf9efb79c51622738c5618", "modified": "2022-11-02 09:19:52", "datetime": "2022-11-02 09:19:52", "api_version": "2.0" }
Matches List API provide access to all of our matches.
Request
- Path: /v2/matches/
- Method: GET
- Parameters
Parameter
Value
Description
status
integer
filter matches by status (ie: live, completed, upcoming). see properties reference for match status codes
format
integer
filter matches by format (ie: odi, test). see properties reference for match format codes
date
string
List matches of specific date. Need both date start and date end values. date value example - 2018-02-12 (yyyy-mm-dd)
token
string
API Access token
per_page
integer
Number of competition to list in each api request
paged
integer
Page number for request
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.matches:
an array of all available matches objects.
Reference properties
Parameter | Value | Description |
---|---|---|
match_id | integer | match id |
title | string | match name/title |
short_title | string | contains both teams short name, ie Ind vs Aus |
subtitle | string | contains either the match format + number or important event name, ie: Final, 2nd ODI, 1st Quarterfinal. |
format | integer | numerical representation of match format. |
format_str | string | match format name |
status | string | numerical representation of match status. see match_statuss reference. |
status_str | string | match status name. |
status_note | string | a small note of current match state. It would be the winning margin if match completed, could be current required rate if match is on live, and would containg date if match is scheduled. |
verified | string | "true" - Match Data is verified, "false" - Match Data is not verified. For fantasy solutions we suggest keep updating API until you receive verfied: true. |
pre_squad | string | "true" - Fantasy Match Roaster API has managed fantasy credit and player role, "false" - Fantasy Match Roaster API don't have managed fantasy credit and player role. |
odds_available | string | true = pre match odds available, false = pre match odds not available. |
game_state | integer | numerical representation of match game_state. game state is available for live match only. |
game_state_str | string | match game_state name. |
domestic | string | numerical representation of match category type |
competition | array | an array of parent competition details of the match, see competition object properties. |
teama | array | Team A details, see teama match properties. |
teamb | array | Team B details, see teamb match properties. |
date_start | date | match start date in GMT(UTC +0) |
date_end | date | match end date in GMT(UTC +0) |
timestamp_start | integer | match start timestamp in GMT(UTC +0) |
timestamp_end | integer | match end timestamp in GMT(UTC +0) |
date_start_ist | string | match start date in IST (UTC+05:30) |
date_end_ist | string | match enddate in IST (UTC+05:30) |
venue | array | an array of venue details of the match, see venue object properties. |
umpires | string | umpires of the match. |
referee | string | referee of the match. |
equation | string | match result condition. |
live | string | live match status note. |
result | string | result of the match |
result_type | integer | numerical representation of result |
win_margin | string | match win margin. |
winning_team_id | integer | winning team id |
commentary | integer | numerical representation of commentary available or not for match. |
wagon | integer | numerical representation of wagon available or not for match. |
latest_inning_number | integer | latest or active innings number. |
presquad_time | string | match presquad time |
verify_time | string | match veirfied time |
toss | array | an array of toss details of the match, see toss object properties. |
Competition properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition last match date |
country | string | Country ISO Code |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
Teama properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Teamb properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Venue properties
Parameter | Value | Description |
---|---|---|
venue_id | integer | venue id |
name | string | Venue name/title |
location | string | City Name |
timezone | string | number of hours ahead of GMT if value is positive or number of hours behind GMT if value if negative |
Toss properties
Parameter | Value | Description |
---|---|---|
text | string | Toss result text with team name |
winner | integer | team id of toss winning team |
decision | integer | numerical representation of decision made by toss winning team. |
"https://rest.entitysport.com/v2/matches/?status=2&token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "items": [ { "match_id": 56606, "title": "Boost Defenders vs Speen Ghar Tigers", "short_title": "BDD vs SGT", "subtitle": "Final", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Speen Ghar Tigers won by 6 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15714, "name": "Boost Defenders", "short_name": "BDD", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/boost-120x120.jpg", "scores_full": "182/6 (20 ov)", "scores": "182/6", "overs": "20" }, "teamb": { "team_id": 15711, "name": "Speen Ghar Tigers", "short_name": "SGT", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/images-120x120.jpg", "scores_full": "188/4 (20 ov)", "scores": "188/4", "overs": "20" }, "date_start": "2022-08-04 06:00:00", "date_end": "2022-08-04 16:00:00", "timestamp_start": 1659592800, "timestamp_end": 1659628800, "date_start_ist": "2022-08-04 11:30:00", "date_end_ist": "2022-08-04 21:30:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": " Mehmood Kharotai (Afghanistan), Farooq Khan (Afghanistan), Bismillah Jan Shinwari (Afghanistan, TV)", "referee": " Hamim Khan (Afghanistan)", "equation": "", "live": "", "result": "SGT won by 6 runs.", "result_type": 2, "win_margin": "6 runs.", "winning_team_id": 15711, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-08-03 18:41:42", "verify_time": "2022-08-04 15:59:21", "toss": { "text": "Speen Ghar Tigers won the toss & elected to bat", "winner": 15711, "decision": 1 } }, { "match_id": 56605, "title": "Speen Ghar Tigers vs Kabul Eagles", "short_title": "SGT vs KABUL", "subtitle": "Qualifier 2", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Speen Ghar Tigers won by 63 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15711, "name": "Speen Ghar Tigers", "short_name": "SGT", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/images-120x120.jpg", "scores_full": "140/9 (20 ov)", "scores": "140/9", "overs": "20" }, "teamb": { "team_id": 15715, "name": "Kabul Eagles", "short_name": "KABUL", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/index-120x120.jpg", "scores_full": "77/10 (14.2 ov)", "scores": "77/10", "overs": "14.2" }, "date_start": "2022-08-03 09:15:00", "date_end": "2022-08-03 19:15:00", "timestamp_start": 1659518100, "timestamp_end": 1659554100, "date_start_ist": "2022-08-03 14:45:00", "date_end_ist": "2022-08-04 00:45:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Bismillah Jan Shinwari (Afghanistan), Mehmood Kharotai (Afghanistan), Farooq Khan (Afghanistan, TV) ", "referee": "", "equation": "", "live": "", "result": "SGT won by 63 runs.", "result_type": 1, "win_margin": "63 runs.", "winning_team_id": 15711, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-08-02 19:06:41", "verify_time": "2022-08-03 18:40:16", "toss": { "text": "Kabul Eagles won the toss & elected to field", "winner": 15715, "decision": 2 } }, { "match_id": 56525, "title": "Kabul Eagles vs Mis Ainak Knights", "short_title": "KABUL vs MAK", "subtitle": "Eliminator", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Kabul Eagles won by 39 runs (D/L method)", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15715, "name": "Kabul Eagles", "short_name": "KABUL", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/index-120x120.jpg", "scores_full": "72/0 (5 ov)", "scores": "72/0", "overs": "5" }, "teamb": { "team_id": 15708, "name": "Mis Ainak Knights", "short_name": "MAK", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/Mis_Ainak_Knights-120x120.jpg", "scores_full": "107/9 (14 ov)", "scores": "107/9", "overs": "14" }, "date_start": "2022-08-02 09:15:00", "date_end": "2022-08-02 19:15:00", "timestamp_start": 1659431700, "timestamp_end": 1659467700, "date_start_ist": "2022-08-02 14:45:00", "date_end_ist": "2022-08-03 00:45:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Farooq Khan (Afghanistan), Izatullah Safi (Afghanistan), Bismillah Jan Shinwari (Afghanistan, TV)", "referee": "Hamim Khan (Afghanistan)", "equation": "", "live": "", "result": "KABUL won by 39 runs (D/L method)", "result_type": 1, "win_margin": "39 runs (D/L method)", "winning_team_id": 15715, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-08-01 18:13:56", "verify_time": "2022-08-02 19:43:12", "toss": { "text": "Kabul Eagles won the toss & elected to field", "winner": 15715, "decision": 2 } }, { "match_id": 56524, "title": "Boost Defenders vs Speen Ghar Tigers", "short_title": "BDD vs SGT", "subtitle": "Qualifier 1", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Boost Defenders won by 6 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15714, "name": "Boost Defenders", "short_name": "BDD", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/boost-120x120.jpg", "scores_full": "176/3 (20 ov)", "scores": "176/3", "overs": "20" }, "teamb": { "team_id": 15711, "name": "Speen Ghar Tigers", "short_name": "SGT", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/images-120x120.jpg", "scores_full": "170/5 (20 ov)", "scores": "170/5", "overs": "20" }, "date_start": "2022-08-02 04:30:00", "date_end": "2022-08-02 14:30:00", "timestamp_start": 1659414600, "timestamp_end": 1659450600, "date_start_ist": "2022-08-02 10:00:00", "date_end_ist": "2022-08-02 20:00:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Durrani (Afghanistan), Ahmed Shah Pakteen (Afghanistan), Farooq Khan (Afghanistan, TV)", "referee": "Zarab Shah Zaheer (Afghanistan)", "equation": "", "live": "", "result": "BDD won by 6 runs.", "result_type": 1, "win_margin": "6 runs.", "winning_team_id": 15714, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-08-01 17:31:26", "verify_time": "2022-08-02 14:34:15", "toss": { "text": "Speen Ghar Tigers won the toss & elected to field", "winner": 15711, "decision": 2 } }, { "match_id": 56340, "title": "Hindukush Stars vs Mis Ainak Knights", "short_title": "HS vs MAK", "subtitle": "Match 28", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Mis Ainak Knights won by 8 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 125425, "name": "Hindukush Stars", "short_name": "HS", "logo_url": "https://images.entitysport.com/assets/uploads//2022/07/FC-HST@2x.png", "scores_full": "104/10 (17.3 ov)", "scores": "104/10", "overs": "17.3" }, "teamb": { "team_id": 15708, "name": "Mis Ainak Knights", "short_name": "MAK", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/Mis_Ainak_Knights-120x120.jpg", "scores_full": "105/2 (9.3 ov)", "scores": "105/2", "overs": "9.3" }, "date_start": "2022-08-01 09:15:00", "date_end": "2022-08-01 19:15:00", "timestamp_start": 1659345300, "timestamp_end": 1659381300, "date_start_ist": "2022-08-01 14:45:00", "date_end_ist": "2022-08-02 00:45:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Pakteen (Afghanistan), Izatullah Safi (Afghanistan), Bismillah Jan Shinwari (Afghanistan, TV)", "referee": "Hamim Khan (Afghanistan)", "equation": "", "live": "", "result": "MAK won by 8 wickets", "result_type": 2, "win_margin": "8 wickets", "winning_team_id": 15708, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-30 15:51:59", "verify_time": "2022-08-01 17:50:41", "toss": { "text": "Hindukush Stars won the toss & elected to bat", "winner": 125425, "decision": 1 } }, { "match_id": 56339, "title": "Kabul Eagles vs Boost Defenders", "short_title": "KABUL vs BDD", "subtitle": "Match 27", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Boost Defenders won by 4 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15715, "name": "Kabul Eagles", "short_name": "KABUL", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/index-120x120.jpg", "scores_full": "98/10 (19.1 ov)", "scores": "98/10", "overs": "19.1" }, "teamb": { "team_id": 15714, "name": "Boost Defenders", "short_name": "BDD", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/boost-120x120.jpg", "scores_full": "104/6 (17.3 ov)", "scores": "104/6", "overs": "17.3" }, "date_start": "2022-08-01 04:30:00", "date_end": "2022-08-01 14:30:00", "timestamp_start": 1659328200, "timestamp_end": 1659364200, "date_start_ist": "2022-08-01 10:00:00", "date_end_ist": "2022-08-01 20:00:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Durrani (Afghanistan), Bismillah Jan Shinwari (Afghanistan), Izatullah Safi (Afghanistan, TV)", "referee": "Zarab Shah Zaheer (Afghanistan)", "equation": "", "live": "", "result": "BDD won by 4 wickets", "result_type": 2, "win_margin": "4 wickets", "winning_team_id": 15714, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-30 10:57:43", "verify_time": "2022-08-01 13:47:27", "toss": { "text": "Boost Defenders won the toss & elected to field", "winner": 15714, "decision": 2 } }, { "match_id": 56338, "title": "Speen Ghar Tigers vs Band-e-Amir Dragons", "short_title": "SGT vs BEAD", "subtitle": "Match 26", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Speen Ghar Tigers won by 97 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15711, "name": "Speen Ghar Tigers", "short_name": "SGT", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/images-120x120.jpg", "scores_full": "214/4 (20 ov)", "scores": "214/4", "overs": "20" }, "teamb": { "team_id": 15707, "name": "Band-e-Amir Dragons", "short_name": "BEAD", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/band-120x110.jpg", "scores_full": "117/10 (18.3 ov)", "scores": "117/10", "overs": "18.3" }, "date_start": "2022-07-31 09:15:00", "date_end": "2022-07-31 19:15:00", "timestamp_start": 1659258900, "timestamp_end": 1659294900, "date_start_ist": "2022-07-31 14:45:00", "date_end_ist": "2022-08-01 00:45:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Durrani (Afghanistan), Bismillah Jan Shinwari (Afghanistan), Ahmed Shah Pakteen (Afghanistan, TV)", "referee": "Yasir Latifzai (Afghanistan)", "equation": "", "live": "", "result": "SGT won by 97 runs.", "result_type": 1, "win_margin": "97 runs.", "winning_team_id": 15711, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-29 15:51:49", "verify_time": "", "toss": { "text": "Band-e-Amir Dragons won the toss & elected to field", "winner": 15707, "decision": 2 } }, { "match_id": 56337, "title": "Pamir Zalmi vs Amo Sharks", "short_title": "PZ vs AMSKS", "subtitle": "Match 25", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Amo Sharks won by 29 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 125426, "name": "Pamir Zalmi", "short_name": "PZ", "logo_url": "https://images.entitysport.com/assets/uploads//2022/07/FC-PZ@2x.png", "scores_full": "101/4 (20 ov)", "scores": "101/4", "overs": "20" }, "teamb": { "team_id": 15710, "name": "Amo Sharks", "short_name": "AMSKS", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/amo-120x120.jpg", "scores_full": "130/9 (20 ov)", "scores": "130/9", "overs": "20" }, "date_start": "2022-07-31 04:30:00", "date_end": "2022-07-31 14:30:00", "timestamp_start": 1659241800, "timestamp_end": 1659277800, "date_start_ist": "2022-07-31 10:00:00", "date_end_ist": "2022-07-31 20:00:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Pakteen (Afghanistan), Izatullah Safi (Afghanistan), Bismillah Jan Shinwari (Afghanistan, TV)", "referee": "Zarab Shah Zaheer (Afghanistan)", "equation": "", "live": "", "result": "AMSKS won by 29 runs.", "result_type": 2, "win_margin": "29 runs.", "winning_team_id": 15710, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-29 10:35:13", "verify_time": "2022-07-31 13:56:51", "toss": { "text": "Pamir Zalmi won the toss & elected to field", "winner": 125426, "decision": 2 } }, { "match_id": 56336, "title": "Kabul Eagles vs Hindukush Stars", "short_title": "KABUL vs HS", "subtitle": "Match 24", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Kabul Eagles won by 9 wickets", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15715, "name": "Kabul Eagles", "short_name": "KABUL", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/index-120x120.jpg", "scores_full": "183/1 (13.5 ov)", "scores": "183/1", "overs": "13.5" }, "teamb": { "team_id": 125425, "name": "Hindukush Stars", "short_name": "HS", "logo_url": "https://images.entitysport.com/assets/uploads//2022/07/FC-HST@2x.png", "scores_full": "182/6 (20 ov)", "scores": "182/6", "overs": "20" }, "date_start": "2022-07-30 09:15:00", "date_end": "2022-07-30 19:15:00", "timestamp_start": 1659172500, "timestamp_end": 1659208500, "date_start_ist": "2022-07-30 14:45:00", "date_end_ist": "2022-07-31 00:45:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": "Ahmed Shah Pakteen (Afghanistan), Izatullah Safi (Afghanistan), Ahmed Shah Durrani (Afghanistan, TV)", "referee": "Hamim Khan (Afghanistan)", "equation": "", "live": "", "result": "KABUL won by 9 wickets", "result_type": 1, "win_margin": "9 wickets", "winning_team_id": 15715, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-28 16:32:36", "verify_time": "2022-07-30 18:08:45", "toss": { "text": "Hindukush Stars won the toss & elected to bat", "winner": 125425, "decision": 1 } }, { "match_id": 56335, "title": "Mis Ainak Knights vs Boost Defenders", "short_title": "MAK vs BDD", "subtitle": "Match 23", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Boost Defenders won by 4 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "domestic": "1", "competition": { "cid": 125424, "title": "Shpageeza Cricket League", "abbr": "SCLT", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2022", "datestart": "2022-07-18", "dateend": "2022-08-05", "country": "af", "total_matches": "32", "total_rounds": "1", "total_teams": "8" }, "teama": { "team_id": 15708, "name": "Mis Ainak Knights", "short_name": "MAK", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/Mis_Ainak_Knights-120x120.jpg", "scores_full": "153/6 (20 ov)", "scores": "153/6", "overs": "20" }, "teamb": { "team_id": 15714, "name": "Boost Defenders", "short_name": "BDD", "logo_url": "https://images.entitysport.com/assets/uploads/2019/10/boost-120x120.jpg", "scores_full": "157/6 (20 ov)", "scores": "157/6", "overs": "20" }, "date_start": "2022-07-30 04:30:00", "date_end": "2022-07-30 14:30:00", "timestamp_start": 1659155400, "timestamp_end": 1659191400, "date_start_ist": "2022-07-30 10:00:00", "date_end_ist": "2022-07-30 20:00:00", "venue": { "venue_id": "2", "name": "Kabul International Cricket Stadium", "location": "Kabul", "country": "Afghanistan", "timezone": "-12" }, "umpires": " Ahmed Shah Durrani (Afghanistan), Bismillah Jan Shinwari (Afghanistan), Izatullah Safi (Afghanistan, TV) ", "referee": "Yasir Latifza (Afghanistan)", "equation": "", "live": "", "result": "BDD won by 4 runs.", "result_type": 2, "win_margin": "4 runs.", "winning_team_id": 15714, "commentary": 1, "wagon": 0, "latest_inning_number": 2, "presquad_time": "2022-07-28 10:51:22", "verify_time": "2022-07-30 14:12:28", "toss": { "text": "Mis Ainak Knights won the toss & elected to field", "winner": 15708, "decision": 2 } } ], "total_items": 1160, "total_pages": 116 }, "etag": "434a8620663ed6edda415dabd0ab2448", "modified": "2022-11-02 09:19:58", "datetime": "2022-11-02 09:19:58", "api_version": "2.0" }
Match Info API provide general match information.
Request
- Path: /v2/matches/[MATCH_ID]/info
- Method: GET
- Parameters
Parameter
Value
Description
token
string
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response
Reference properties
Parameter | Value | Description |
---|---|---|
match_id | integer | match id |
title | string | match name/title |
short_title | string | match short name/title |
subtitle | string | contains either the match format + number or important event name, ie: Final, 2nd ODI, 1st Quarterfinal. |
format | integer | numerical representation of match format. see match_formats reference |
format_str | string | match format name |
status | string | numerical representation of match status. see match_statuss reference. |
status_str | string | match status name. |
status_note | string | a small note of current match state. It would be the winning margin if match completed, could be current required rate if match is on live, and would containg date if match is scheduled. |
verified | string | "true" - Match Data is verified, "false" - Match Data is not verified. For fantasy solutions we suggest keep updating API until you receive verfied: true. |
pre_squad | string | "true" - Fantasy Match Roaster API has managed fantasy credit and player role, "false" - Fantasy Match Roaster API don't have managed fantasy credit and player role. |
odds_available | string | true = pre match odds available, false = pre match odds not available. |
game_state | integer | numerical representation of match game_state. game state is available for live match only. |
game_state_str | string | match game_state name. |
competition | array | an array of parent competition details of the match, see competition object properties. |
teama | array | an array of teams participating in the match, see teama match properties. |
teamb | array | an array of teams participating in the match, see teamb match properties. |
date_start | date | match start date in GMT(UTC +0) |
date_end | date | match end date in GMT(UTC +0) |
timestamp_start | integer | match start timestamp in GMT(UTC +0) |
timestamp_end | integer | match end timestamp in GMT(UTC +0) |
date_start_ist | date | match start date in GMT(UTC +0) |
date_end_ist | date | match end date in GMT(UTC +0) |
venue | array | an array of venue details of the match , see venue object properties. |
umpires | string | umpires of the match. |
referee | string | referee of the match. |
equation | string | match result condition. |
live | string | live match status note. |
result | string | result of the match |
result_type | integer | numerical representation of result |
win_margin | string | match win margin. |
winning_team_id | integer | winning team id |
commentary | integer | numerical representation of commentary available or not for match. |
wagon | integer | numerical representation of wagon available or not for match. |
latest_inning_number | integer | latest or active innings number. |
presquad_time | string | match presquad time |
verify_time | string | match verified time |
toss | array | an array of toss details of the match , see toss object properties. |
Competition properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition last match date |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
country | string | Country ISO Code |
Teama properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
thumb_url | string | team thumb url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Teamb properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
thumb_url | string | team thumb url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Venue properties
Parameter | Value | Description |
---|---|---|
venue_id | integer | venue id |
name | string | Venue name/title |
location | string | City Name |
timezone | string | number of hours ahead of GMT if value is positive or number of hours behind GMT if value if negative |
Toss properties
Parameter | Value | Description |
---|---|---|
text | string | Toss result text with team name |
winner | integer | team id of toss winning team |
decision | integer | numerical representation of decision made by toss winning team. |
"https://rest.entitysport.com/v2/matches/49689/info?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "match_id": 49689, "title": "Perth Scorchers vs Sydney Sixers", "short_title": "PS vs SIX", "subtitle": "Final", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 79 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "171/6 (20 ov)", "scores": "171/6", "overs": "20" }, "teamb": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "92/10 (16.2 ov)", "scores": "92/10", "overs": "16.2" }, "date_start": "2022-01-28 08:40:00", "date_end": "2022-01-28 18:40:00", "timestamp_start": 1643359200, "timestamp_end": 1643395200, "date_start_ist": "2022-01-28 14:10:00", "date_end_ist": "2022-01-29 00:10:00", "venue": { "venue_id": "106", "name": "Docklands Stadium, Melbourne", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Phillip Gillespie (Australia), Sam Nogajski (Australia), Donovan Koch (Australia, TV)", "referee": "Steve Davis (Australia)", "equation": "", "live": "", "result": "PS won by 79 runs.", "result_type": 1, "win_margin": "79 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2022-01-26 18:11:06", "verify_time": "2022-01-28 17:38:59", "toss": { "text": "Sydney Sixers won the toss & elected to field", "winner": 14203, "decision": 2 } }, "etag": "2e4f27c8e0c95f367d081b8b2848b913", "modified": "2022-01-28 12:09:21", "datetime": "2022-11-12 09:46:22", "api_version": "2.0" }
Match Fantasy Points API provide player fantasy points value based on match performance.
Request
- Path: /v2/matches/[MATCH_ID]/newpoint2
- Method: GET
- Parameters
Parameter
Value
Description
token
string
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response
Reference properties
Parameter | Value | Description |
---|---|---|
match_id | integer | match id |
title | string | match name/title |
short_title | string | match short name/title |
subtitle | string | contains either the match format + number or important event name, ie: Final, 2nd ODI, 1st Quarterfinal. |
format | integer | numerical representation of match format. see match_formats reference. |
format_str | string | match format name |
status | integer | numerical representation of match status. see match_status reference. |
status_str | string | match status name. |
status_note | string | a small note of current match state. It would be the winning margin if match completed, could be current required rate if match is on live, and would containg date if match is scheduled. |
verified | string | "true" - Match Data is verified, "false" - Match Data is not verified. For fantasy solutions we suggest keep updating API until you receive verfied: true. |
pre_squad | string | "true" - Fantasy Match Roaster API has managed fantasy credit and player role, "false" - Fantasy Match Roaster API don't have managed fantasy credit and player role. |
odds_available | string | true = pre match odds available, false = pre match odds not available. |
game_state | string | numerical representation of match game_state. game state is available for live match only. |
game_state_str | string | match game_state name |
competition | array | an array of parent competition details of the match,see competition object properties. |
teama | array | an array of teams participating in the match, see teama object properties. |
teamb | array | an array of teams participating in the match, see teamb object properties. |
date_start | date | match start date in GMT(UTC +0) |
date_end | date | match end date in GMT(UTC +0) |
timestamp_start | integer | match start timestamp in GMT(UTC +0) |
timestamp_end | integer | match end timestamp in GMT(UTC +0) |
date_start_ist | date | match start date in GMT(UTC +0) |
date_end_ist | date | match end date in GMT(UTC +0) |
venue | array | an array of venue details of the match, see venue object properties. |
umpires | string | umpires of the match. |
referee | string | referee of the match. |
equation | string | match result condition. |
live | string | live match status note. |
result | string | result of the match |
result_type | integer | numerical representation of result |
win_margin | string | match win margin. |
winning_team_id | integer | winning team id |
commentary | integer | numerical representation of commentary available or not for match. |
wagon | integer | numerical representation of wagon available or not for match. |
latest_inning_number | integer | latest or active innings number. |
presquad_time | string | match presquad time |
verify_time | string | match verified time |
toss | array | an array of toss details of the match, see toss object properties. |
points | array | an array of details player fantasy points team wise based on match performance, see point object properties. |
Competition properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
season | string | competition season name |
datestart | date | competition first match date |
dateend | date | competition last match date |
total_matches | integer | number of total matches |
total_rounds | integer | number of total rounds |
total_teams | integer | number of total teams |
country | string | Country ISO Code |
Teama properties
Parameter | Value | Description |
---|---|---|
playing11 | array | player list details of which are included in playing 11. see playing11 properties. |
substitute | array | player list details of which are not included in playing 11, see substitute properties. |
Teamb properties
Parameter | Value | Description |
---|---|---|
playing11 | array | player list details of which are included in playing 11. see playing11 properties. |
substitute | array | player list details of which are not included in playing 11, see substitute properties. |
Venue properties
Parameter | Value | Description |
---|---|---|
venue_id | string | venue id |
name | string | Venue name/title |
location | string | City Name |
timezone | string | number of hours ahead of GMT if value is positive or number of hours behind GMT if value if negative |
Toss properties
Parameter | Value | Description |
---|---|---|
text | string | Toss result text with team name |
winner | integer | team id of toss winning team |
decision | integer | numerical representation of decision made by toss winning team. |
Points properties
Parameter | Value | Description |
---|---|---|
teama | array | Team A player list details, see teama properties. |
teamb | array | Team B player list details, see teamb properties. |
Playing11 properties
Parameter | Value | Description |
---|---|---|
pid | string | player id |
name | string | player name |
role | string | player match playing role |
rating | string | player salary credits |
point | string | player fantasy points based on match performance |
starting11 | string | player fantasy points for part of starting11 |
run | string | player fantasy points for runs scorecard |
four | string | player fantasy points for number of 4s |
six | string | player fantasy points for number of 6s |
sr | string | player fantasy points for strike rate |
fifty | string | player fantasy points for 50 runs scored |
duck | string | player fantasy points for 0 run scored |
wkts | string | player fantasy points for wickets taken |
maidenover | string | player fantasy for maiden over |
er | string | player fantasy points for economy rate |
catch | string | player fantasy points for catches taken |
runoutstumping | string | player fantasy points runouts and stumping |
runoutthrower | string | player fantasy points runouts and thrower |
runoutcatcher | string | player fantasy points runouts and catcher |
directrunout | string | player fantasy points direct run out |
stumping | string | player fantasy points stumping |
thirty | string | player fantasy points thirty |
bonus | string | player fantasy points bonus |
bonuscatch | string | player fantasy points bonus catch |
bonusbowedlbw | string | player fantasy points bonus bowed lbw |
Substitute properties
Parameter | Value | Description |
---|---|---|
pid | string | player id |
name | string | player name |
role | string | player match playing role |
rating | string | player salary credits |
point | string | player fantasy points based on match performance |
starting11 | string | player fantasy points for part of starting11 |
run | string | player fantasy points for runs scorecard |
four | string | player fantasy points for number of 4s |
six | string | player fantasy points for number of 6s |
sr | string | player fantasy points for strike rate |
fifty | string | player fantasy points for 50 runs scored |
duck | string | player fantasy points for 0 run scored |
wkts | string | player fantasy points for wickets taken |
maidenover | string | player fantasy for maiden over |
er | string | player fantasy points for economy rate |
catch | string | player fantasy points for catches taken |
runoutstumping | string | player fantasy points runouts and stumping |
runoutthrower | string | player fantasy points runouts and thrower |
runoutcatcher | string | player fantasy points runouts and catcher |
directrunout | string | player fantasy points direct run out |
stumping | string | player fantasy points stumping |
thirty | string | player fantasy points thirty |
bonus | string | player fantasy points bonus |
bonuscatch | string | player fantasy points bonus catch |
bonusbowedlbw | string | player fantasy points bonus bowed lbw |
"https://rest.entitysport.com/v2/matches/49689/newpoint2?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "match_id": 49689, "title": "Perth Scorchers vs Sydney Sixers", "short_title": "PS vs SIX", "subtitle": "Final", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 79 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "status": "result", "season": "2021", "datestart": "2021-12-05", "dateend": "2022-01-28", "total_matches": "64", "total_rounds": "1", "total_teams": "9", "country": "au" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Perth-Scorchers-32x32.png", "scores_full": "171/6 (20 ov)", "scores": "171/6", "overs": "20" }, "teamb": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads/2016/12/Sydney-Sixers-32x32.png", "scores_full": "92/10 (16.2 ov)", "scores": "92/10", "overs": "16.2" }, "date_start": "2022-01-28 08:40:00", "date_end": "2022-01-28 18:40:00", "timestamp_start": 1643359200, "timestamp_end": 1643395200, "date_start_ist": "2022-01-28 14:10:00", "date_end_ist": "2022-01-29 00:10:00", "venue": { "venue_id": "106", "name": "Docklands Stadium, Melbourne", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Phillip Gillespie (Australia), Sam Nogajski (Australia), Donovan Koch (Australia, TV)", "referee": "Steve Davis (Australia)", "equation": "", "live": "", "result": "PS won by 79 runs.", "result_type": 1, "win_margin": "79 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2022-01-26 18:11:06", "verify_time": "2022-01-28 17:38:59", "toss": { "text": "Sydney Sixers won the toss & elected to field", "winner": 14203, "decision": 2 }, "points": { "teama": { "playing11": [ { "pid": "83", "name": "Mitchell Marsh", "role": "all", "rating": "10.5", "point": "10", "starting11": "4", "run": "5", "four": "1", "six": "0", "sr": "-6", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "6", "runoutthrower": "6", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "1921", "name": "Colin Munro", "role": "bat", "rating": "9", "point": "5", "starting11": "4", "run": "1", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "1955", "name": "Ashton Agar", "role": "all", "rating": "9", "point": "57", "starting11": "4", "run": "15", "four": "3", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "25", "maidenover": "0", "er": "2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "1963", "name": "Andrew Tye", "role": "bowl", "rating": "9.5", "point": "87", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "79", "maidenover": "0", "er": "4", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43582", "name": "Jason Behrendorff", "role": "bowl", "rating": "8.5", "point": "39", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "25", "maidenover": "0", "er": "2", "catch": "8", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43584", "name": "Ashton Turner", "role": "bat", "rating": "8.5", "point": "101", "starting11": "4", "run": "54", "four": "4", "six": "2", "sr": "4", "fifty": "8", "duck": "0", "wkts": "25", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43610", "name": "Kurtis Patterson", "role": "bat", "rating": "9", "point": "21", "starting11": "4", "run": "1", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "16", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43631", "name": "Jhye Richardson", "role": "bowl", "rating": "9", "point": "73", "starting11": "4", "run": "1", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "50", "maidenover": "0", "er": "2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "16" }, { "pid": "49029", "name": "Laurie Evans", "role": "bat", "rating": "8.5", "point": "106", "starting11": "4", "run": "76", "four": "4", "six": "8", "sr": "6", "fifty": "8", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "55846", "name": "Josh Inglis", "role": "wk", "rating": "8.5", "point": "33", "starting11": "4", "run": "13", "four": "2", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "8", "runoutstumping": "6", "runoutthrower": "0", "runoutcatcher": "6", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "55898", "name": "Matthew Kelly", "role": "bowl", "rating": "8.5", "point": "4", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "93390", "name": "Aaron Hardie", "role": "all", "rating": "8.5", "point": "4", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "104661", "name": "Peter Hatzoglou", "role": "bowl", "rating": "8.5", "point": "51", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "25", "maidenover": "0", "er": "6", "catch": "8", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" } ], "substitute": [ { "pid": "43563", "name": "Cameron Bancroft", "role": "wk", "rating": "8.5", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "53627", "name": "David Moody", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "55844", "name": "Nick Hobson", "role": "bat", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "58304", "name": "Lance Morris", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "60103", "name": "Chris Sabburg", "role": "bat", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "96765", "name": "Cooper Connolly", "role": "bat", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" } ] }, "teamb": { "playing11": [ { "pid": "651", "name": "Sean Abbott", "role": "all", "rating": "9.5", "point": "7", "starting11": "4", "run": "1", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "748", "name": "Moises Henriques", "role": "bat", "rating": "9.5", "point": "12", "starting11": "4", "run": "7", "four": "1", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43459", "name": "Nathan Lyon", "role": "bowl", "rating": "8.5", "point": "57", "starting11": "4", "run": "3", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "50", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43461", "name": "Jackson Bird", "role": "bowl", "rating": "8.5", "point": "37", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "25", "maidenover": "0", "er": "0", "catch": "8", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43538", "name": "Steve O'Keefe", "role": "bowl", "rating": "8.5", "point": "54", "starting11": "4", "run": "2", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "50", "maidenover": "0", "er": "-2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43544", "name": "Daniel Christian", "role": "all", "rating": "9", "point": "15", "starting11": "4", "run": "3", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "8", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "43605", "name": "Ben Dwarshuis", "role": "bowl", "rating": "8.5", "point": "2", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "-2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "55880", "name": "Jay Lenton", "role": "wk", "rating": "8", "point": "35", "starting11": "4", "run": "10", "four": "1", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "8", "runoutstumping": "12", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "12", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "84354", "name": "Nicholas Bertus", "role": "wk", "rating": "8", "point": "19", "starting11": "4", "run": "15", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "85014", "name": "Justin Avendano", "role": "bat", "rating": "8", "point": "5", "starting11": "4", "run": "1", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "90598", "name": "Daniel Hughes", "role": "bat", "rating": "8.5", "point": "62", "starting11": "4", "run": "42", "four": "2", "six": "2", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "8", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "4", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "93459", "name": "Lloyd Pope", "role": "bowl", "rating": "8", "point": "4", "starting11": "4", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "0" }, { "pid": "96508", "name": "Hayden Kerr", "role": "all", "rating": "9.5", "point": "41", "starting11": "4", "run": "2", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "25", "maidenover": "0", "er": "2", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" } ], "substitute": [ { "pid": "43455", "name": "Jordan Silk", "role": "bat", "rating": "8.5", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "55159", "name": "Nick Winter", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "55941", "name": "Mickey Edwards", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "93388", "name": "Josh Philippe", "role": "wk", "rating": "9.5", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "93453", "name": "Jack Edwards", "role": "bat", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "95486", "name": "Todd Murphy", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" }, { "pid": "96197", "name": "Lawrence Neil-Smith", "role": "bowl", "rating": "8", "point": "0", "starting11": "0", "run": "0", "four": "0", "six": "0", "sr": "0", "fifty": "0", "duck": "0", "wkts": "0", "maidenover": "0", "er": "0", "catch": "0", "runoutstumping": "0", "runoutthrower": "0", "runoutcatcher": "0", "directrunout": "0", "stumping": "0", "thirty": "0", "bonus": "0", "bonuscatch": "0", "bonusbowedlbw": "8" } ] } } }, "etag": "2e4f27c8e0c95f367d081b8b2848b913", "modified": "2022-01-28 12:09:21", "datetime": "2022-11-02 09:20:35", "api_version": "2.0" }
Match Scorecard API provide full match scorecard details. This API point includes batting, bowling, fall of wickets, venue, umpires, time, toss information.
Request
- Path: /v2/matches/[MATCH_ID]/scorecard
- Method: GET
- Parameters
Parameter
Value
Description
token
string
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the responseresponse.competition:
competition object.response.teama:
first team / first participant, team object.response.teamb:
second team, team object.response.venue:
match venue data.response.umpires:
umpires string.response.toss:
toss object.response.innings:
All innings.response.players:
Player details.
Reference properties
Parameter | Value | Description |
---|---|---|
match_id | integer | match id |
title | string | match name/title |
short_title | string | match short name/title |
subtitle | string | contains either the match format + number or important event name, ie: Final, 2nd ODI, 1st Quarterfinal. |
match_number | string | Match Number |
format | integer | numerical representation of match format. see match_formats reference. |
format_str | string | match format name |
status | integer | numerical representation of match status. see match_statuss reference. |
status_str | string | match status name. |
status_note | string | a small note of current match state. It would be the winning margin if match completed, could be current required rate if match is on live, and would containg date if match is scheduled. |
verified | string | "true" - Match Data is verified, "false" - Match Data is not verified. For fantasy solutions we suggest keep updating API until you receive verfied: true. |
pre_squad | string | "true" - Fantasy Match Roaster API has managed fantasy credit and player role, "false" - Fantasy Match Roaster API don't have managed fantasy credit and player role. |
odds_available | string | true = pre match odds available, false = pre match odds not available. |
game_state | integer | numerical representation of match game_state. game state is available for live match only. |
game_state_str | string | match game_state name. |
competition | array | an array of parent competition details of the match, see competition object properties. |
teama | array | an array of teams participating in the match, see teama match properties. |
teamb | array | an array of teams participating in the match, see teamb match properties. |
date_start | string | match start date in GMT(UTC +0) |
date_end | string | match end date in GMT(UTC +0) |
timestamp_start | integer | match start timestamp in GMT(UTC +0) |
timestamp_end | integer | match end timestamp in GMT(UTC +0) |
date_start_ist | string | match start date in GMT(UTC +0) |
date_end_ist | string | match end date in GMT(UTC +0) |
venue | array | an array of venue details of the match, see venue object properties. |
umpires | string | umpires of the match. |
referee | string | referee of the match. |
equation | string | match result condition. |
live | string | live match status note. |
result | string | result status note |
result_type | integer | match result type |
win_margin | string | match win margin. |
winning_team_id | integer | match won team id |
commentary | integer | numerical representation of commentary available or not for match. |
wagon | integer | numerical representation of wagon available or not for match. |
latest_inning_number | integer | latest or active innings number. |
presquad_time | string | match start presquad time |
verify_time | string | match start verify time |
toss | array | an array of toss details of the match , see toss object properties. |
current_over | string | current over runs. |
previous_over | string | last over runs. |
man_of_the_match | array | A set of man of the match objects. see man of the match object properties. |
man_of_the_series | string | man of the series player name |
is_followon | integer | numerical representation of followon or not for match. |
team_batting_first | string | team batting first name |
team_batting_second | string | team batting second name |
last_five_overs | string | runs scored and wicket lost in last 5 overs |
live_inning_number | string | live inning number |
innings | array | an array of innings details, see innings object properties. |
players | array | an array of players details. see player object properties. |
pre_match_odds | array | An array pre match odds details. |
day_remaining_over | string | match day remaining over |
match_notes | array | An array match_notes details. |
Competition properties
Parameter | Value | Description |
---|---|---|
cid | integer | competition id |
title | string | competition name/title |
abbr | string | competition name abbreviation |
type | string | competition type, possible values are tour, tournament, series |
category | string | competition category, possible values are international, domestic, youth, women |
match_format | string | played match format. a competition can hold multiple match types, ie odi, test etc. possible values are mixed, odi, test, t20i, firstclass, lista, t20, youthodi, youtht20, womenodi, woment20 |
season | string | competition season name |
status | string | competition status. possible values are live (currently ongoing), fixture (upcoming), result (completed) |
datestart | string | competition first match date |
dateend | string | competition last match date |
country | string | Country ISO Code |
total_matches | string | number of total matches |
total_rounds | string | number of total rounds |
total_teams | string | number of total teams |
Teama properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
thumb_url | string | team thrumb url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Teamb properties
Parameter | Value | Description |
---|---|---|
team_id | integer | team id |
name | string | team name |
short_name | string | team short name |
logo_url | string | team logo url |
thumb_url | string | team thrumb url |
scores_full | string | team full score |
scores | string | team score |
overs | string | overs played by team |
Venue properties
Parameter | Value | Description |
---|---|---|
venue_id | string | venue id |
name | string | Venue name/title |
location | string | City Name |
country | string | Country Name |
timezone | string | number of hours ahead of GMT if value is positive or number of hours behind GMT if value if negative |
Toss properties
Parameter | Value | Description |
---|---|---|
text | string | Toss result text with team name |
winner | integer | team id of toss winning team |
decision | integer | numerical representation of decision made by toss winning team. |
Man of the match properties
Parameter | Value | Description |
---|---|---|
pid | integer | player id |
name | string | player name |
thumb_url | string | player image url |
Innings properties
Parameter | Value | Description |
---|---|---|
iid | integer | inning id |
number | integer | inning number |
name | string | inning name |
short_name | string | inning short name |
status | integer | numerical representation of inning status |
issuperover | string | inning super over (true/false). |
result | integer | numerical representation of inning result status |
batting_team_id | integer | team id of batting team |
fielding_team_id | integer | team id of fielding team |
scores | string | team score |
scores_full | string | team full score |
batsmen | Array | an array of batsmen objects. see Batsmen Properties |
bowlers | Array | an array of bowlers objects. see Bowlers Properties |
fielder | Array | an array of fielders objects. see Fielder Properties |
powerplay | Array | an array of powerplay objects. see Fielder Properties |
review | Array | an array of review objects. see review Properties |
fows | Array | an array of fall of wicket object details..see fall of wickets Properties |
last_wicket | Array | a set of last wicket object details. see last wicket Properties |
extra_runs | Array | a set of extra runs object details, extra runs object properties |
equations | Array | a set of equations object details, equation object properties |
current_partnership | Array | a set of current partnership object details. see current partnership Properties |
did_not_bat | Array | an array of did not bat objects. see did not batProperties |
Batsmen properties
Parameter | Value | Description |
---|---|---|
name | string | player name |
batsman_id | integer | player id |
runs | integer | runs scored by batsman |
balls | integer | balls faced by batsman |
Bowlers properties
Parameter | Value | Description |
---|---|---|
name | string | player name |
bowler_id | string | player id |
bowling | string | true means bowler currently bowling, false means bowler currently not bowling |
position | string | active bowler : bowling active over, last bowler : bowled previous over and empty if bowling : false |
overs | string | Number of overs bowled by bowler |
maidens | string | Number of maiden overs bowled by bowler |
runs_conceded | string | Number of runs conceded by bowler |
wickets | string | number of wickets taken by bowler |
noballs | string | number of no balls bowled by bowler |
wides | string | number of wides bowled by bowler |
econ | string | economy rate of bowler |
run0 | string | number of dot balls bowled by bowler |
bowledcount | string | number of bowled count |
lbwcount | string | number of lbw count |
Fielder properties
Parameter | Value | Description |
---|---|---|
fielder_id | string | fielder id |
fielder_name | string | fielder name |
catches | integer | Number of catches taken by player in the innings |
runout_thrower | integer | Number of times fielder assisted as thrower in a runout dismissal |
runout_catcher | integer | Number of times fielder assisted as receiver of the ball from another fielder in a runout dismissal to take bails off the wickets |
runout_direct_hit | integer | number of times fielder created a direct hit runout dismissal |
stumping | integer | number of times fielder created stumping |
is_substitute | string | false if fielder is part of playing 11, true if fielder was fielding as substitute |
Powerplay properties
Parameter | Value | Description |
---|---|---|
p1 | array | an array of p1 details participating in partnership, see p1 partership properties |
P1 properties
Parameter | Value | Description |
---|---|---|
startover | string | powerplay start over |
endover | string | powerplay end over |
Review properties
Parameter | Value | Description |
---|---|---|
batting | array | an array of batting details in partnership, see batting properties |
bowling | array | an array of bowling details , see bowling properties |
Batting properties
Parameter | Value | Description |
---|---|---|
batting_team_total_review | string | number of batting team total review |
batting_team_review_success | string | number of batting team succesfull review |
batting_team_review_failed | string | number of batting team review failed |
batting_team_review_available | string | number of batting team review available |
Bowling properties
Parameter | Value | Description |
---|---|---|
bowling_team_total_review | string | number of bowling team total review |
bowling_team_review_success | string | number of bowling team succesfull review |
bowling_team_review_failed | string | number of bowling team review failed |
bowling_team_review_available | string | number of bowling team review available |
Fows properties
Parameter | Value | Description |
---|---|---|
name | string | player name |
batsman_id | string | player id |
runs | string | Number of runs scored by batsman |
balls | string | number of balls balls faced by batsman |
how_out | string | batsman dismissal details |
score_at_dismissal | integer | team score at dismissal |
overs_at_dismissal | string | overs at dismissal |
bowler_id | string | player id |
dismissal | string | dismissal type |
number | integer | wicket order number |
Last wicket properties
Parameter | Value | Description |
---|---|---|
name | string | player name |
batsman_id | string | player id |
runs | string | Number of runs scored by batsman |
balls | string | number of balls balls faced by batsman |
how_out | string | batsman dismissal details |
score_at_dismissal | integer | team score at dismissal |
overs_at_dismissal | string | overs at dismissal |
bowler_id | string | player id |
dismissal | string | dismissal type |
number | integer | wicket order number |
Extra runs properties
Parameter | Value | Description |
---|---|---|
byes | integer | byes runs |
legbyes | integer | legbyes runs |
wides | integer | wides runs |
noballs | integer | no balls runs |
penalty | string | penalty runs |
total | integer | total extra runs |
Equations properties
Parameter | Value | Description |
---|---|---|
runs | integer | total runs |
wickets | integer | total wickets |
overs | string | total overs bowled in inning |
bowlers_used | integer | total bowlers used |
runrate | string | inning run rate |
Current partnership properties
Parameter | Value | Description |
---|---|---|
runs | integer | Total runs scored in partnership |
balls | integer | number of balls faced by batsman during partnership |
overs | integer | number of overs for partnership |
batsmen | Array | an array of batsmen details participating in partnership, see batsmen partership properties |
Did not bat properties
Parameter | Value | Description |
---|---|---|
player_id | string | player id |
name | string | player name |
Players properties
Parameter | Value | Description |
---|---|---|
pid | integer | player id |
title | string | player name |
short_name | string | player short name |
first_name | string | player first name |
last_name | string | player last name |
middle_name | string | player middle name |
birthdate | string | player date of birth |
birthplace | string | player birth place |
country | string | Country ISO Code |
primary_team | Array | an array of team details, |
logo_url | string | player logo url |
playing_role | string | player playing role |
batting_style | string | player batting style |
bowling_style | string | player bowling style |
fielding_position | string | player fielding position |
recent_match | integer | match id of last played match |
recent_appearance | integer | timestamp of last played match |
fantasy_player_rating | integer | player fantasy salary or credit rating |
alt_name | string | player alternative name |
thumb_url | string | player logo thumbnail url |
nationality | string | player nationality |
role | string | player role |
role_str | string | player role short name (eg-captain(c)) |
"https://rest.entitysport.com/v2/matches/49689/scorecard?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "match_id": 49689, "title": "Perth Scorchers vs Sydney Sixers", "short_title": "PS vs SIX", "subtitle": "Final", "match_number": "61", "format": 6, "format_str": "T20", "status": 2, "status_str": "Completed", "status_note": "Perth Scorchers won by 79 runs.", "verified": "true", "pre_squad": "true", "odds_available": "false", "game_state": 0, "game_state_str": "Default", "competition": { "cid": 121143, "title": "Big Bash League", "abbr": "BBL21", "type": "tournament", "category": "domestic", "match_format": "t20", "season": "2021", "status": "result", "datestart": "2021-12-05", "dateend": "2022-01-28", "country": "au", "total_matches": "64", "total_rounds": "1", "total_teams": "9" }, "teama": { "team_id": 14214, "name": "Perth Scorchers", "short_name": "PS", "logo_url": "https://images.entitysport.com/assets/uploads//2022/12/Perth-Scorchers-New.jpg", "thumb_url": "https://images.entitysport.com/assets/uploads//2022/12/Perth-Scorchers-New.jpg", "scores_full": "171/6 (20 ov)", "scores": "171/6", "overs": "20" }, "teamb": { "team_id": 14203, "name": "Sydney Sixers", "short_name": "SIX", "logo_url": "https://images.entitysport.com/assets/uploads//2022/12/Sydney-Sixers.png", "thumb_url": "https://images.entitysport.com/assets/uploads//2022/12/Sydney-Sixers.png", "scores_full": "92/10 (16.2 ov)", "scores": "92/10", "overs": "16.2" }, "date_start": "2022-01-28 08:40:00", "date_end": "2022-01-28 18:40:00", "timestamp_start": 1643359200, "timestamp_end": 1643395200, "date_start_ist": "2022-01-28 14:10:00", "date_end_ist": "2022-01-29 00:10:00", "venue": { "venue_id": "106", "name": "Docklands Stadium, Melbourne", "location": "Melbourne", "country": "Australia", "timezone": "-12" }, "umpires": "Phillip Gillespie (Australia), Sam Nogajski (Australia), Donovan Koch (Australia, TV)", "referee": "Steve Davis (Australia)", "equation": "", "live": "", "result": "PS won by 79 runs.", "result_type": 1, "win_margin": "79 runs.", "winning_team_id": 14214, "commentary": 1, "wagon": 1, "latest_inning_number": 2, "presquad_time": "2022-01-26 23:41:06", "verify_time": "2022-01-28 23:08:59", "toss": { "text": "Sydney Sixers elected to bowl", "winner": 14203, "decision": 2 }, "current_over": "", "previous_over": "", "man_of_the_match": { "pid": 49029, "name": "Laurie Evans", "thumb_url": "" }, "man_of_the_series": "", "is_followon": 0, "team_batting_first": "", "team_batting_second": "", "last_five_overs": "", "live_inning_number": "", "innings": [ { "iid": 116123, "number": 1, "name": "Perth Scorchers Innings", "short_name": "PS Innings", "status": 2, "issuperover": "false", "result": 4, "batting_team_id": 14214, "fielding_team_id": 14203, "scores": "171/6", "scores_full": "171/6 (20 ov)", "batsmen": [ { "name": "Kurtis Patterson", "batsman_id": "43610", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "1", "balls_faced": "4", "fours": "0", "sixes": "0", "run0": "3", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "c Jay Lenton b JM Bird", "dismissal": "caught", "strike_rate": "25.00", "bowler_id": "43461", "first_fielder_id": "55880", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Josh Inglis", "batsman_id": "55846", "batting": "false", "position": "", "role": "wk", "role_str": "(WK)", "runs": "13", "balls_faced": "13", "fours": "2", "sixes": "0", "run0": "6", "run1": "5", "run2": "0", "run3": "0", "run5": "0", "how_out": "st Jay Lenton b Steve O'Keefe", "dismissal": "stumped", "strike_rate": "100.00", "bowler_id": "43538", "first_fielder_id": "55880", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Mitchell Marsh", "batsman_id": "83", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "5", "balls_faced": "11", "fours": "1", "sixes": "0", "run0": "9", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "c DT Christian b Nathan Lyon", "dismissal": "caught", "strike_rate": "45.45", "bowler_id": "43459", "first_fielder_id": "43544", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Colin Munro", "batsman_id": "1921", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "1", "balls_faced": "5", "fours": "0", "sixes": "0", "run0": "4", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "c JM Bird b Nathan Lyon", "dismissal": "caught", "strike_rate": "20.00", "bowler_id": "43459", "first_fielder_id": "43461", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Ashton Turner", "batsman_id": "43584", "batting": "false", "position": "", "role": "bat", "role_str": "(C)", "runs": "54", "balls_faced": "35", "fours": "4", "sixes": "1", "run0": "5", "run1": "18", "run2": "7", "run3": "0", "run5": "0", "how_out": "c Daniel Hughes b Steve O'Keefe", "dismissal": "caught", "strike_rate": "154.29", "bowler_id": "43538", "first_fielder_id": "90598", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Laurie Evans", "batsman_id": "49029", "batting": "true", "position": "striker", "role": "bat", "role_str": "", "runs": "76", "balls_faced": "41", "fours": "4", "sixes": "4", "run0": "7", "run1": "17", "run2": "8", "run3": "1", "run5": "0", "how_out": "Not out", "dismissal": "", "strike_rate": "185.37", "bowler_id": "0", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Ashton Agar", "batsman_id": "1955", "batting": "false", "position": "", "role": "bowl", "role_str": "", "runs": "15", "balls_faced": "9", "fours": "3", "sixes": "0", "run0": "3", "run1": "3", "run2": "0", "run3": "0", "run5": "0", "how_out": "lbw b Hayden Kerr", "dismissal": "lbw", "strike_rate": "166.67", "bowler_id": "96508", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Jhye Richardson", "batsman_id": "43631", "batting": "true", "position": "non striker", "role": "bowl", "role_str": "", "runs": "1", "balls_faced": "2", "fours": "0", "sixes": "0", "run0": "1", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "Not out", "dismissal": "", "strike_rate": "50.00", "bowler_id": "0", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" } ], "bowlers": [ { "name": "Sean Abbott", "bowler_id": "651", "bowling": "false", "position": "", "overs": "4", "maidens": "0", "runs_conceded": "27", "wickets": "0", "noballs": "0", "wides": "0", "econ": "6.75", "run0": "8", "bowledcount": "0", "lbwcount": "0" }, { "name": "Jackson Bird", "bowler_id": "43461", "bowling": "false", "position": "", "overs": "1", "maidens": "0", "runs_conceded": "6", "wickets": "1", "noballs": "0", "wides": "0", "econ": "6.00", "run0": "3", "bowledcount": "0", "lbwcount": "0" }, { "name": "Hayden Kerr", "bowler_id": "96508", "bowling": "false", "position": "last bowler", "overs": "3", "maidens": "0", "runs_conceded": "20", "wickets": "1", "noballs": "0", "wides": "0", "econ": "6.67", "run0": "7", "bowledcount": "0", "lbwcount": "1" }, { "name": "Steve O'Keefe", "bowler_id": "43538", "bowling": "false", "position": "", "overs": "4", "maidens": "0", "runs_conceded": "43", "wickets": "2", "noballs": "0", "wides": "2", "econ": "10.75", "run0": "7", "bowledcount": "0", "lbwcount": "0" }, { "name": "Nathan Lyon", "bowler_id": "43459", "bowling": "false", "position": "", "overs": "3", "maidens": "0", "runs_conceded": "24", "wickets": "2", "noballs": "0", "wides": "0", "econ": "8.00", "run0": "7", "bowledcount": "0", "lbwcount": "0" }, { "name": "Ben Dwarshuis", "bowler_id": "43605", "bowling": "true", "position": "active bowler", "overs": "2", "maidens": "0", "runs_conceded": "22", "wickets": "0", "noballs": "0", "wides": "1", "econ": "11.00", "run0": "2", "bowledcount": "0", "lbwcount": "0" }, { "name": "Daniel Christian", "bowler_id": "43544", "bowling": "false", "position": "", "overs": "3", "maidens": "0", "runs_conceded": "28", "wickets": "0", "noballs": "0", "wides": "1", "econ": "9.33", "run0": "4", "bowledcount": "0", "lbwcount": "0" } ], "fielder": [ { "fielder_id": "55880", "fielder_name": "Jay Lenton", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 1, "is_substitute": "false" }, { "fielder_id": "43544", "fielder_name": "Daniel Christian", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "43461", "fielder_name": "Jackson Bird", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "90598", "fielder_name": "Daniel Hughes", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" } ], "powerplay": [], "review": { "batting": { "batting_team_total_review": "0", "batting_team_review_success": "0", "batting_team_review_failed": "0", "batting_team_review_available": "0" }, "bowling": { "bowling_team_total_review": "0", "bowling_team_review_success": "0", "bowling_team_review_failed": "0", "bowling_team_review_available": "0" } }, "fows": [ { "name": "Kurtis Patterson", "batsman_id": "43610", "runs": "1", "balls": "4", "how_out": "c Jay Lenton b JM Bird", "score_at_dismissal": 7, "overs_at_dismissal": "1.4", "bowler_id": "43461", "dismissal": "caught", "number": 1 }, { "name": "Josh Inglis", "batsman_id": "55846", "runs": "13", "balls": "13", "how_out": "st Jay Lenton b Steve O'Keefe", "score_at_dismissal": 14, "overs_at_dismissal": "4.1", "bowler_id": "43538", "dismissal": "stumped", "number": 2 }, { "name": "Mitchell Marsh", "batsman_id": "83", "runs": "5", "balls": "11", "how_out": "c DT Christian b Nathan Lyon", "score_at_dismissal": 20, "overs_at_dismissal": "5.1", "bowler_id": "43459", "dismissal": "caught", "number": 3 }, { "name": "Colin Munro", "batsman_id": "1921", "runs": "1", "balls": "5", "how_out": "c JM Bird b Nathan Lyon", "score_at_dismissal": 25, "overs_at_dismissal": "5.6", "bowler_id": "43459", "dismissal": "caught", "number": 4 }, { "name": "Ashton Turner", "batsman_id": "43584", "runs": "54", "balls": "35", "how_out": "c Daniel Hughes b Steve O'Keefe", "score_at_dismissal": 129, "overs_at_dismissal": "15.5", "bowler_id": "43538", "dismissal": "caught", "number": 5 }, { "name": "Ashton Agar", "batsman_id": "1955", "runs": "15", "balls": "9", "how_out": "lbw b Hayden Kerr", "score_at_dismissal": 158, "overs_at_dismissal": "18.5", "bowler_id": "96508", "dismissal": "lbw", "number": 6 } ], "last_wicket": { "name": "Ashton Agar", "batsman_id": "1955", "runs": "15", "balls": "9", "how_out": "lbw b Hayden Kerr", "score_at_dismissal": 158, "overs_at_dismissal": "18.5", "bowler_id": "96508", "dismissal": "lbw", "number": 6 }, "extra_runs": { "byes": 0, "legbyes": 1, "wides": 4, "noballs": 0, "penalty": "0", "total": 5 }, "equations": { "runs": 171, "wickets": 6, "overs": "20", "bowlers_used": 7, "runrate": "8.55" }, "current_partnership": { "runs": 13, "balls": 7, "overs": 1.1, "batsmen": [ { "name": "Jhye Richardson", "batsman_id": 43631, "runs": 1, "balls": 2 }, { "name": "Laurie Evans", "batsman_id": 49029, "runs": 11, "balls": 5 } ] }, "did_not_bat": [ { "player_id": "1963", "name": "Andrew Tye" }, { "player_id": "43582", "name": "Jason Behrendorff" }, { "player_id": "104661", "name": "Peter Hatzoglou" }, { "player_id": "93390", "name": "Aaron Hardie" }, { "player_id": "55898", "name": "Matthew Kelly" } ] }, { "iid": 116125, "number": 2, "name": "Sydney Sixers Innings", "short_name": "SIX Innings", "status": 2, "issuperover": "false", "result": 1, "batting_team_id": 14203, "fielding_team_id": 14214, "scores": "92/10", "scores_full": "92/10 (16.2 ov)", "batsmen": [ { "name": "Hayden Kerr", "batsman_id": "96508", "batting": "false", "position": "", "role": "all", "role_str": "", "runs": "2", "balls_faced": "4", "fours": "0", "sixes": "0", "run0": "2", "run1": "2", "run2": "0", "run3": "0", "run5": "0", "how_out": "c P Hatzoglou b JP Behrendorff", "dismissal": "caught", "strike_rate": "50.00", "bowler_id": "43582", "first_fielder_id": "104661", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Nicholas Bertus", "batsman_id": "84354", "batting": "false", "position": "", "role": "wk", "role_str": "", "runs": "15", "balls_faced": "15", "fours": "0", "sixes": "0", "run0": "4", "run1": "7", "run2": "4", "run3": "0", "run5": "0", "how_out": "c JP Behrendorff b AJ Turner", "dismissal": "caught", "strike_rate": "100.00", "bowler_id": "43584", "first_fielder_id": "43582", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Daniel Hughes", "batsman_id": "90598", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "42", "balls_faced": "33", "fours": "2", "sixes": "1", "run0": "9", "run1": "15", "run2": "5", "run3": "1", "run5": "0", "how_out": "runout (JP Inglis / MR Marsh)", "dismissal": "runout", "strike_rate": "127.27", "bowler_id": "0", "first_fielder_id": "83", "second_fielder_id": "55846", "third_fielder_id": "" }, { "name": "Moises Henriques", "batsman_id": "748", "batting": "false", "position": "", "role": "all", "role_str": "(C)", "runs": "7", "balls_faced": "7", "fours": "1", "sixes": "0", "run0": "3", "run1": "3", "run2": "0", "run3": "0", "run5": "0", "how_out": "lbw b AC Agar", "dismissal": "lbw", "strike_rate": "100.00", "bowler_id": "1955", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Daniel Christian", "batsman_id": "43544", "batting": "false", "position": "", "role": "all", "role_str": "", "runs": "3", "balls_faced": "7", "fours": "0", "sixes": "0", "run0": "4", "run1": "3", "run2": "0", "run3": "0", "run5": "0", "how_out": "c Kurtis Patterson b AJ Tye", "dismissal": "caught", "strike_rate": "42.86", "bowler_id": "1963", "first_fielder_id": "43610", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Justin Avendano", "batsman_id": "85014", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "1", "balls_faced": "4", "fours": "0", "sixes": "0", "run0": "3", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "b P Hatzoglou", "dismissal": "bowled", "strike_rate": "25.00", "bowler_id": "104661", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Sean Abbott", "batsman_id": "651", "batting": "false", "position": "", "role": "bowl", "role_str": "", "runs": "1", "balls_faced": "9", "fours": "0", "sixes": "0", "run0": "8", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "c Kurtis Patterson b AJ Tye", "dismissal": "caught", "strike_rate": "11.11", "bowler_id": "1963", "first_fielder_id": "43610", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Ben Dwarshuis", "batsman_id": "43605", "batting": "false", "position": "", "role": "bowl", "role_str": "", "runs": "0", "balls_faced": "2", "fours": "0", "sixes": "0", "run0": "2", "run1": "0", "run2": "0", "run3": "0", "run5": "0", "how_out": "c JP Inglis b AJ Tye", "dismissal": "caught", "strike_rate": "0.00", "bowler_id": "1963", "first_fielder_id": "55846", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Jay Lenton", "batsman_id": "55880", "batting": "true", "position": "non striker", "role": "wk", "role_str": "(WK)", "runs": "10", "balls_faced": "9", "fours": "1", "sixes": "0", "run0": "2", "run1": "6", "run2": "0", "run3": "0", "run5": "0", "how_out": "Not out", "dismissal": "", "strike_rate": "111.11", "bowler_id": "0", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Nathan Lyon", "batsman_id": "43459", "batting": "false", "position": "", "role": "bowl", "role_str": "", "runs": "3", "balls_faced": "3", "fours": "0", "sixes": "0", "run0": "1", "run1": "1", "run2": "1", "run3": "0", "run5": "0", "how_out": "b JA Richardson", "dismissal": "bowled", "strike_rate": "100.00", "bowler_id": "43631", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Steve O'Keefe", "batsman_id": "43538", "batting": "true", "position": "striker", "role": "bowl", "role_str": "", "runs": "2", "balls_faced": "5", "fours": "0", "sixes": "0", "run0": "3", "run1": "2", "run2": "0", "run3": "0", "run5": "0", "how_out": "lbw b JA Richardson", "dismissal": "lbw", "strike_rate": "40.00", "bowler_id": "43631", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" } ], "bowlers": [ { "name": "Jhye Richardson", "bowler_id": "43631", "bowling": "true", "position": "active bowler", "overs": "3.2", "maidens": "0", "runs_conceded": "20", "wickets": "2", "noballs": "0", "wides": "0", "econ": "6.00", "run0": "6", "bowledcount": "1", "lbwcount": "1" }, { "name": "Jason Behrendorff", "bowler_id": "43582", "bowling": "false", "position": "", "overs": "2", "maidens": "0", "runs_conceded": "12", "wickets": "1", "noballs": "0", "wides": "1", "econ": "6.00", "run0": "6", "bowledcount": "0", "lbwcount": "0" }, { "name": "Ashton Turner", "bowler_id": "43584", "bowling": "false", "position": "", "overs": "1", "maidens": "0", "runs_conceded": "6", "wickets": "1", "noballs": "0", "wides": "0", "econ": "6.00", "run0": "1", "bowledcount": "0", "lbwcount": "0" }, { "name": "Peter Hatzoglou", "bowler_id": "104661", "bowling": "false", "position": "", "overs": "3", "maidens": "0", "runs_conceded": "13", "wickets": "1", "noballs": "0", "wides": "4", "econ": "4.33", "run0": "11", "bowledcount": "1", "lbwcount": "0" }, { "name": "Ashton Agar", "bowler_id": "1955", "bowling": "false", "position": "", "overs": "4", "maidens": "0", "runs_conceded": "25", "wickets": "1", "noballs": "0", "wides": "0", "econ": "6.25", "run0": "8", "bowledcount": "0", "lbwcount": "1" }, { "name": "Andrew Tye", "bowler_id": "1963", "bowling": "false", "position": "last bowler", "overs": "3", "maidens": "0", "runs_conceded": "15", "wickets": "3", "noballs": "0", "wides": "0", "econ": "5.00", "run0": "9", "bowledcount": "0", "lbwcount": "0" } ], "fielder": [ { "fielder_id": "104661", "fielder_name": "Peter Hatzoglou", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "43582", "fielder_name": "Jason Behrendorff", "catches": 1, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "83", "fielder_name": "Mitchell Marsh", "catches": 0, "runout_thrower": 1, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "55846", "fielder_name": "Josh Inglis", "catches": 1, "runout_thrower": 0, "runout_catcher": 1, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "43610", "fielder_name": "Kurtis Patterson", "catches": 2, "runout_thrower": 0, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" } ], "powerplay": [], "review": { "batting": { "batting_team_total_review": "0", "batting_team_review_success": "0", "batting_team_review_failed": "0", "batting_team_review_available": "0" }, "bowling": { "bowling_team_total_review": "0", "bowling_team_review_success": "0", "bowling_team_review_failed": "0", "bowling_team_review_available": "0" } }, "fows": [ { "name": "Hayden Kerr", "batsman_id": "96508", "runs": "2", "balls": "4", "how_out": "c P Hatzoglou b JP Behrendorff", "score_at_dismissal": 5, "overs_at_dismissal": "1.3", "bowler_id": "43582", "dismissal": "caught", "number": 1 }, { "name": "Nicholas Bertus", "batsman_id": "84354", "runs": "15", "balls": "15", "how_out": "c JP Behrendorff b AJ Turner", "score_at_dismissal": 32, "overs_at_dismissal": "4.6", "bowler_id": "43584", "dismissal": "caught", "number": 2 }, { "name": "Moises Henriques", "batsman_id": "748", "runs": "7", "balls": "7", "how_out": "lbw b AC Agar", "score_at_dismissal": 46, "overs_at_dismissal": "6.6", "bowler_id": "1955", "dismissal": "lbw", "number": 3 }, { "name": "Daniel Christian", "batsman_id": "43544", "runs": "3", "balls": "7", "how_out": "c Kurtis Patterson b AJ Tye", "score_at_dismissal": 62, "overs_at_dismissal": "9.4", "bowler_id": "1963", "dismissal": "caught", "number": 4 }, { "name": "Justin Avendano", "batsman_id": "85014", "runs": "1", "balls": "4", "how_out": "b P Hatzoglou", "score_at_dismissal": 71, "overs_at_dismissal": "11.2", "bowler_id": "104661", "dismissal": "bowled", "number": 5 }, { "name": "Daniel Hughes", "batsman_id": "90598", "runs": "42", "balls": "33", "how_out": "runout (JP Inglis / MR Marsh)", "score_at_dismissal": 77, "overs_at_dismissal": "12.5", "bowler_id": "0", "dismissal": "runout", "number": 6 }, { "name": "Sean Abbott", "batsman_id": "651", "runs": "1", "balls": "9", "how_out": "c Kurtis Patterson b AJ Tye", "score_at_dismissal": 77, "overs_at_dismissal": "13.2", "bowler_id": "1963", "dismissal": "caught", "number": 7 }, { "name": "Ben Dwarshuis", "batsman_id": "43605", "runs": "0", "balls": "2", "how_out": "c JP Inglis b AJ Tye", "score_at_dismissal": 77, "overs_at_dismissal": "13.3", "bowler_id": "1963", "dismissal": "caught", "number": 8 }, { "name": "Nathan Lyon", "batsman_id": "43459", "runs": "3", "balls": "3", "how_out": "b JA Richardson", "score_at_dismissal": 82, "overs_at_dismissal": "14.3", "bowler_id": "43631", "dismissal": "bowled", "number": 9 }, { "name": "Steve O'Keefe", "batsman_id": "43538", "runs": "2", "balls": "5", "how_out": "lbw b JA Richardson", "score_at_dismissal": 92, "overs_at_dismissal": "16.2", "bowler_id": "43631", "dismissal": "lbw", "number": 10 } ], "last_wicket": { "name": "Steve O'Keefe", "batsman_id": "43538", "runs": "2", "balls": "5", "how_out": "lbw b JA Richardson", "score_at_dismissal": 92, "overs_at_dismissal": "16.2", "bowler_id": "43631", "dismissal": "lbw", "number": 10 }, "extra_runs": { "byes": 0, "legbyes": 1, "wides": 5, "noballs": 0, "penalty": "0", "total": 6 }, "equations": { "runs": 92, "wickets": 10, "overs": "16.2", "bowlers_used": 6, "runrate": "5.63" }, "current_partnership": { "runs": 10, "balls": 11, "overs": 1.5, "batsmen": [ { "name": "Steve O'Keefe", "batsman_id": 43538, "runs": 2, "balls": 5 }, { "name": "Jay Lenton", "batsman_id": 55880, "runs": 8, "balls": 6 } ] }, "did_not_bat": [ { "player_id": "43461", "name": "Jackson Bird" }, { "player_id": "93459", "name": "Lloyd Pope" } ] } ], "players": [ { "pid": 83, "title": "Mitchell Marsh", "short_name": "MR Marsh", "first_name": "Mitchell Marsh", "last_name": "", "middle_name": "", "birthdate": "1991-10-20", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium", "fielding_position": "", "recent_match": 18968, "recent_appearance": 1514244600, "fantasy_player_rating": 8.5, "alt_name": "Mitchell Marsh", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bat", "role_str": "" }, { "pid": 651, "title": "Sean Abbott", "short_name": "Sean Abbott", "first_name": "Sean Abbott", "last_name": "", "middle_name": "", "birthdate": "1992-02-29", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "alt_name": "Sean Abbott", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 748, "title": "Moises Henriques", "short_name": "Moises Henriques", "first_name": "Moises Henriques", "last_name": "", "middle_name": "", "birthdate": "1987-02-01", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "all", "role_str": "(C)" }, { "pid": 1921, "title": "Colin Munro", "short_name": "C Munro", "first_name": "Colin Munro", "last_name": "", "middle_name": "", "birthdate": "1987-03-11", "birthplace": "", "country": "nz", "primary_team": [], "logo_url": "", "playing_role": "bat", "batting_style": "Left hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "New Zealand", "role": "bat", "role_str": "" }, { "pid": 1955, "title": "Ashton Agar", "short_name": "AC Agar", "first_name": "Ashton Agar", "last_name": "", "middle_name": "", "birthdate": "1993-10-14", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 18958, "recent_appearance": 1517646000, "fantasy_player_rating": 8, "alt_name": "Ashton Agar", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 1963, "title": "Andrew Tye", "short_name": "AJ Tye", "first_name": "Andrew Tye", "last_name": "", "middle_name": "", "birthdate": "1986-12-12", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Medium Fast", "fielding_position": "", "recent_match": 18970, "recent_appearance": 1515900000, "fantasy_player_rating": 8.5, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 43455, "title": "Jordan Silk", "short_name": "JC Silk", "first_name": "Jordan Silk", "last_name": "", "middle_name": "", "birthdate": "1992-04-13", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8.5, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "squad", "role_str": "" }, { "pid": 43459, "title": "Nathan Lyon", "short_name": "Nathan Lyon", "first_name": "Nathan Lyon", "last_name": "", "middle_name": "", "birthdate": "1987-11-20", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 9, "alt_name": "Nathan Lyon", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 43461, "title": "Jackson Bird", "short_name": "JM Bird", "first_name": "Jackson Bird", "last_name": "", "middle_name": "", "birthdate": "1986-12-11", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 18968, "recent_appearance": 1514244600, "fantasy_player_rating": 8.5, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 43538, "title": "Steve O'Keefe", "short_name": "Steve O'Keefe", "first_name": "Steve O'Keefe", "last_name": "", "middle_name": "", "birthdate": "1984-12-09", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Left Arm Orthodox", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 43544, "title": "Daniel Christian", "short_name": "DT Christian", "first_name": "Daniel Christian", "last_name": "", "middle_name": "", "birthdate": "1983-05-04", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "all", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "all", "role_str": "" }, { "pid": 43563, "title": "Cameron Bancroft", "short_name": "CT Bancroft", "first_name": "Cameron Bancroft", "last_name": "", "middle_name": "", "birthdate": "1992-11-19", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "wk", "batting_style": "Right Hand Bat", "bowling_style": "", "fielding_position": "", "recent_match": 18968, "recent_appearance": 1514244600, "fantasy_player_rating": 8.5, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "squad", "role_str": "" }, { "pid": 43582, "title": "Jason Behrendorff", "short_name": "JP Behrendorff", "first_name": "Jason Behrendorff", "last_name": "", "middle_name": "", "birthdate": "1990-04-20", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Right Hand Bat", "bowling_style": "Left Arm Fast Medium", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bowl", "role_str": "" }, { "pid": 43584, "title": "Ashton Turner", "short_name": "AJ Turner", "first_name": "Ashton Turner", "last_name": "", "middle_name": "", "birthdate": "1993-01-25", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bat", "batting_style": "Right Hand Bat", "bowling_style": "Right Arm Off Break", "fielding_position": "", "recent_match": 0, "recent_appearance": 0, "fantasy_player_rating": 8, "alt_name": "", "facebook_profile": "", "twitter_profile": "", "instagram_profile": "", "vector_url": "", "debut_data": "", "thumb_url": "", "nationality": "Australia", "role": "bat", "role_str": "(C)" }, { "pid": 43605, "title": "Ben Dwarshuis", "short_name": "Ben Dwarshuis", "first_name": "Ben Dwarshuis", "last_name": "", "middle_name": "", "birthdate": "1994-06-23", "birthplace": "", "country": "au", "primary_team": [], "logo_url": "", "playing_role": "bowl", "batting_style": "Left hand Bat", "bowling_style": "Left Arm Fast Medium", "fielding
Match Innings Commentary API provide single inning ball by ball details.
Request
- Path: /v2/matches/[MATCH_ID]/innings/[inning_number]/commentary
- Method: GET
- Parameters
Parameter
Value
Description
token
string
API Access token
Response
status:
Response status. if api request was sucessful, you will get a status ok, or error. If a error is returned, check the response
Reference properties
Parameter | Value | Description |
---|---|---|
match | array | match object details, see match object properties. |
inning | array | inning object details, see inning object properties. |
commentaries | array | an array of commentary object details, see commentary object properties. |
teams | array | an array of teams object details, see team object properties. |
players | array | an array of player details objects, see player object properties. |
Match properties
Parameter | Value | Description |
---|---|---|
status | integer | numerical representation of match status |
game_state | integer | numerical representation of game state |
Inning properties
Parameter | Value | Description |
---|---|---|
iid | integer | inning id |
number | integer | inning number |
name | string | inning name |
short_name | string | inning short name |
status | integer | numerical representation of inning status |
issuperover | string | inning super over (true/false). |
result | integer | numerical representation of result |
batting_team_id | integer | team id of batting team |
fielding_team_id | integer | team id of fielding team |
scores | string | team score |
scores_full | string | team full score |
batsmen | Array | an array of batsmen object details. see batsman Properties |
bowlers | Array | an array of bowlers object details. see bowler Properties |
fielder | Array | an array of fielder object details. see fielder Properties |
powerplay | Array | an array of powerplay object details. see powerplay Properties |
review | Array | an array of review object details. see review Properties |
did_not_bat | Array | an array of did not bat object details. see did not bat Properties |
Batsmen properties
Parameter | Value | Description |
---|---|---|
runs | integer | runs scored by batsman |
balls_faced | integer | balls faced by batsman |
fours | integer | number of fours runs scored by batsman |
sixes | integer | number of sixes runs scored by batsman |
batsman_id | integer | player id |
Bowlers properties
Parameter | Value | Description |
---|---|---|
runs_conceded | integer | Number of runs conceded by bowler |
maidens | integer | Number of maiden overs bowled by bowler |
wickets | integer | number of wickets taken by bowler |
bowler_id | integer | player id |
overs | integer | overs bowled |
Fielder properties
Parameter | Value | Description |
---|---|---|
fielder_id | string | fielder id |
fielder_name | string | fielder name |
catches | integer | Number of catches taken by player in the innings |
runout_thrower | integer | Number of times fielder assisted as thrower in a runout dismissal |
runout_catcher | integer | Number of times fielder assisted as receiver of the ball from another fielder in a runout dismissal to take bails off the wickets |
runout_direct_hit | integer | number of times fielder created a direct hit runout dismissal |
stumping | integer | number of times fielder created stumping |
is_substitute | string | false if fielder is part of playing 11, true if fielder was fielding as substitute |
Powerplay properties
Parameter | Value | Description |
---|---|---|
p1 | array | an array of p1 object details. see p1 Properties |
P1 properties
Parameter | Value | Description |
---|---|---|
startover | string | powerplay start over |
endover | string | powerplay end over |
Review properties
Parameter | Value | Description |
---|---|---|
batting | array | an array of batting object details. see batting Properties |
bowling | array | an array of bowling object details. see bowling Properties |
Batting properties
Parameter | Value | Description |
---|---|---|
batting_team_total_review | string | number of batting team total review |
batting_team_review_success | string | number of batting team succesfull review |
batting_team_review_failed | string | number of batting team review failed |
batting_team_review_available | string | number of batting team review available |
Bowling properties
Parameter | Value | Description |
---|---|---|
bowling_team_total_review | string | number of bowling team total review |
bowling_team_review_success | string | number of bowling team succesfull review |
bowling_team_review_failed | string | number of bowling team review failed |
bowling_team_review_available | string | number of bowling team review available |
Did not bat properties
Parameter | Value | Description |
---|---|---|
player_id | string | player id |
name | string | player name |
Commentaries properties
Parameter | Value | Description |
---|---|---|
event_id | string | event_id |
event | string | event overend |
batsman_id | string | playing batsman id |
bowler_id | string | playing bowler id |
over | string | overs bowled |
ball | string | nth ball of the over |
score | string | run scored on the ball |
commentary | string | commentary text |
noball_dismissal | boolean | number of no balls bowled by bowler |
text | string | team won and loss |
timestamp | integer | number of time stamp |
run | integer | run scored in over |
noball_run | string | no ball run on nth ball of the over |
wide_run | string | wide ball run on nth ball of the over |
bye_run | string | bye run on nth ball of the over |
legbye_run | string | legbye run on nth ball of the over |
bat_run | string | bat run on nth ball of the over |
noball | boolean | noball on nth ball of the over true or false, |
wideball | boolean | wideball on nth ball of the over true or false, |
six | boolean | six hit on nth ball of the over true or false, |
four | boolean | four hit on nth ball of the over true or false, |
batsmen | Array | batsmen object details, see batsmen object properties. |
bowlers | Array | bowlers object details, see bowlers object properties. |
ballverify | boolean | the ball data is (true/falsew) |
Teams properties
Parameter | Value | Description |
---|---|---|
tid | integer | team id |
title | string | team name |
abbr | string | team short name |
alt_name | string | team alternative name |
type | string | team type Country(International Team) or Club |
thumb_url | string | team logo thumbnail url |
logo_url | string | team logo url |
country | string | Country ISO Code |
sex | string | gender of team |
Players properties
Parameter | Value | Description |
---|---|---|
pid | integer | player id |
title | string | player name |
short_name | string | player short name |
first_name | string | player first name |
last_name | string | player last name |
middle_name | string | player middle name |
birthdate | string | player date of birth |
birthplace | string | player birth place |
country | string | Country ISO Code |
primary_team | Array | an array of team details, |
logo_url | string | player logo url |
playing_role | string | player playing role |
batting_style | string | player batting style |
bowling_style | string | player bowling style |
fielding_position | string | player fielding position |
recent_match | integer | match id of last played match |
recent_appearance | integer | timestamp of last played match |
fantasy_player_rating | integer | player fantasy salary or credit rating |
alt_name | string | player alternative name |
thumb_url | string | player logo thumbnail url |
nationality | string | player nationality |
role | string | match playing role |
role_str | string | match playing role short name |
"https://rest.entitysport.com/v2/matches/60397/innings/1/commentary?token=ec471071441bb2ac538a0ff901abd249"
{ "status": "ok", "response": { "match": { "status": 2, "game_state": 0 }, "inning": { "iid": 132752, "number": 1, "name": "Karachi Kings Inning", "short_name": "KK Inning", "status": 2, "issuperover": "false", "result": 3, "batting_team_id": 14469, "fielding_team_id": 14470, "scores": "185/5", "scores_full": "185/5 (20 ov)", "batsmen": [ { "name": "Matthew Wade", "batsman_id": "43522", "batting": "false", "position": "", "role": "wk", "role_str": "(WK)", "runs": "36", "balls_faced": "24", "fours": "4", "sixes": "1", "run0": "6", "run1": "12", "run2": "1", "run3": "0", "run5": "0", "how_out": "runout (Shai Hope / Kamran Ghulam)", "dismissal": "runout", "strike_rate": "150.00", "bowler_id": "0", "first_fielder_id": "44075", "second_fielder_id": "46943", "third_fielder_id": "" }, { "name": "James Vince", "batsman_id": "1949", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "46", "balls_faced": "36", "fours": "3", "sixes": "2", "run0": "13", "run1": "14", "run2": "4", "run3": "0", "run5": "0", "how_out": "b Zaman Khan", "dismissal": "bowled", "strike_rate": "127.78", "bowler_id": "95942", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Haider Ali", "batsman_id": "95302", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "18", "balls_faced": "16", "fours": "1", "sixes": "1", "run0": "6", "run1": "8", "run2": "0", "run3": "0", "run5": "0", "how_out": "b LA Dawson", "dismissal": "bowled", "strike_rate": "112.50", "bowler_id": "1945", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Shoaib Malik", "batsman_id": "1754", "batting": "false", "position": "", "role": "bat", "role_str": "", "runs": "10", "balls_faced": "7", "fours": "0", "sixes": "1", "run0": "3", "run1": "2", "run2": "1", "run3": "0", "run5": "0", "how_out": "c Shai Hope b Haris Rauf", "dismissal": "caught", "strike_rate": "142.86", "bowler_id": "92381", "first_fielder_id": "46943", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Imad Wasim", "batsman_id": "1773", "batting": "true", "position": "striker", "role": "all", "role_str": "(C)", "runs": "35", "balls_faced": "19", "fours": "2", "sixes": "2", "run0": "2", "run1": "11", "run2": "2", "run3": "0", "run5": "0", "how_out": "Not out", "dismissal": "", "strike_rate": "184.21", "bowler_id": "0", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Ben Cutting", "batsman_id": "780", "batting": "false", "position": "", "role": "all", "role_str": "", "runs": "20", "balls_faced": "19", "fours": "2", "sixes": "1", "run0": "10", "run1": "6", "run2": "0", "run3": "0", "run5": "0", "how_out": "b S Afridi", "dismissal": "bowled", "strike_rate": "105.26", "bowler_id": "92991", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" }, { "name": "Irfan Khan", "batsman_id": "95412", "batting": "true", "position": "non striker", "role": "bat", "role_str": "", "runs": "1", "balls_faced": "2", "fours": "0", "sixes": "0", "run0": "1", "run1": "1", "run2": "0", "run3": "0", "run5": "0", "how_out": "Not out", "dismissal": "", "strike_rate": "50.00", "bowler_id": "0", "first_fielder_id": "", "second_fielder_id": "", "third_fielder_id": "" } ], "bowlers": [ { "name": "Shaheen Afridi", "bowler_id": "92991", "bowling": "true", "position": "active bowler", "overs": "4", "maidens": "0", "runs_conceded": "39", "wickets": "1", "noballs": "0", "wides": "2", "econ": "9.75", "run0": "9", "bowledcount": "1", "lbwcount": "0" }, { "name": "Zaman Khan", "bowler_id": "95942", "bowling": "false", "position": "", "overs": "4", "maidens": "0", "runs_conceded": "34", "wickets": "1", "noballs": "1", "wides": "2", "econ": "8.50", "run0": "10", "bowledcount": "1", "lbwcount": "0" }, { "name": "David Wiese", "bowler_id": "725", "bowling": "false", "position": "", "overs": "1", "maidens": "0", "runs_conceded": "15", "wickets": "0", "noballs": "0", "wides": "0", "econ": "15.00", "run0": "1", "bowledcount": "0", "lbwcount": "0" }, { "name": "Haris Rauf", "bowler_id": "92381", "bowling": "false", "position": "last bowler", "overs": "4", "maidens": "0", "runs_conceded": "35", "wickets": "1", "noballs": "0", "wides": "1", "econ": "8.75", "run0": "6", "bowledcount": "0", "lbwcount": "0" }, { "name": "Sikandar Raza", "bowler_id": "183", "bowling": "false", "position": "", "overs": "4", "maidens": "0", "runs_conceded": "27", "wickets": "0", "noballs": "2", "wides": "0", "econ": "6.75", "run0": "8", "bowledcount": "0", "lbwcount": "0" }, { "name": "Liam Dawson", "bowler_id": "1945", "bowling": "false", "position": "", "overs": "3", "maidens": "0", "runs_conceded": "29", "wickets": "1", "noballs": "0", "wides": "1", "econ": "9.67", "run0": "7", "bowledcount": "1", "lbwcount": "0" } ], "fielder": [ { "fielder_id": "44075", "fielder_name": "Kamran Ghulam", "catches": 0, "runout_thrower": 1, "runout_catcher": 0, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" }, { "fielder_id": "46943", "fielder_name": "Shai Hope", "catches": 1, "runout_thrower": 0, "runout_catcher": 1, "runout_direct_hit": 0, "stumping": 0, "is_substitute": "false" } ], "powerplay": { "p1": { "startover": "0.1", "endover": "6" } }, "review": { "batting": { "batting_team_total_review": "2", "batting_team_review_success": "0", "batting_team_review_failed": "0", "batting_team_review_available": "2" }, "bowling": { "bowling_team_total_review": "2", "bowling_team_review_success": "1", "bowling_team_review_failed": "0", "bowling_team_review_available": "1" } }, "did_not_bat": [ { "player_id": "59510", "name": "Akif Javed" }, { "player_id": "1758", "name": "Mohammad Amir" }, { "player_id": "177", "name": "Imran Tahir" }, { "player_id": "43379", "name": "Aamer Yamin" } ] }, "commentaries": [ { "event_id": "2771760", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "0", "ball": "1", "score": "1wd", "commentary": "Shaheen Afridi to Matthew Wade, 1 wide, ", "noball_dismissal": false, "text": "", "timestamp": 1676815281, "run": 1, "noball_run": "0", "wide_run": "1", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": true, "six": false, "four": false, "batsmen": [ { "runs": 0, "balls_faced": 0, "fours": 0, "sixes": 0, "batsman_id": 43522 }, { "runs": 0, "balls_faced": 0, "fours": 0, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 1, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0 } ], "ballverify": false }, { "event_id": "2771764", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "0", "ball": "1", "score": "1wd", "commentary": "Shaheen Afridi to Matthew Wade, 1 wide, ", "noball_dismissal": false, "text": "", "timestamp": 1676815321, "run": 1, "noball_run": "0", "wide_run": "1", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": true, "six": false, "four": false, "batsmen": [ { "runs": 0, "balls_faced": 0, "fours": 0, "sixes": 0, "batsman_id": 43522 }, { "runs": 0, "balls_faced": 0, "fours": 0, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 2, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0 } ], "ballverify": false }, { "event_id": "2771766", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "0", "ball": "1", "score": 1, "commentary": "Shaheen Afridi to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815355, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 }, { "runs": 0, "balls_faced": 0, "fours": 0, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 3, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0.1 } ], "ballverify": false }, { "event_id": "2771773", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "0", "ball": "2", "score": 0, "commentary": "Shaheen Afridi to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815408, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 0, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 3, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0.2 } ], "ballverify": false }, { "event_id": "2771777", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "0", "ball": "3", "score": 0, "commentary": "Shaheen Afridi to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815446, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 0, "balls_faced": 2, "fours": 0, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 3, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0.3 } ], "ballverify": false }, { "event_id": "2771780", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "0", "ball": "4", "score": 4, "commentary": "Shaheen Afridi to James Vince, Four, ", "noball_dismissal": false, "text": "", "timestamp": 1676815478, "run": 4, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "4", "noball": false, "wideball": false, "six": false, "four": true, "batsmen": [ { "runs": 4, "balls_faced": 3, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 7, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0.4 } ], "ballverify": false }, { "event_id": "2771787", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "0", "ball": "5", "score": 2, "commentary": "Shaheen Afridi to James Vince, 2 runs, ", "noball_dismissal": false, "text": "", "timestamp": 1676815519, "run": 2, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "2", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 0.5 } ], "ballverify": false }, { "event_id": "2771791", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "0", "ball": "6", "score": 0, "commentary": "Shaheen Afridi to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815561, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 6, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1 } ], "ballverify": false }, { "event": "overend", "over": 1, "runs": 9, "score": "9/0", "bats": [ { "runs": 6, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 1, "balls_faced": 1, "fours": 0, "sixes": 0, "batsman_id": 43522 } ], "bowls": [ { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1 } ], "commentary": "End of over 1 (9 runs), Karachi Kings 9/0" }, { "event_id": "2771796", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "1", "ball": "1", "score": 0, "commentary": "Zaman Khan to Matthew Wade, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815643, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 1, "balls_faced": 2, "fours": 0, "sixes": 0, "batsman_id": 43522 }, { "runs": 6, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 0, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.1 } ], "ballverify": false }, { "event_id": "2771799", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "1", "ball": "2", "score": 4, "commentary": "Zaman Khan to Matthew Wade, Four, ", "noball_dismissal": false, "text": "", "timestamp": 1676815686, "run": 4, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "4", "noball": false, "wideball": false, "six": false, "four": true, "batsmen": [ { "runs": 5, "balls_faced": 3, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 6, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 4, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.2 } ], "ballverify": false }, { "event_id": "2771801", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "1", "ball": "3", "score": 1, "commentary": "Zaman Khan to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815724, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 6, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 5, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.3 } ], "ballverify": false }, { "event_id": "2771810", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "1", "ball": "4", "score": 0, "commentary": "Zaman Khan to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815780, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 6, "balls_faced": 6, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 5, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.4 } ], "ballverify": false }, { "event_id": "2771813", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "1", "ball": "5", "score": 2, "commentary": "Zaman Khan to James Vince, 2 runs, ", "noball_dismissal": false, "text": "", "timestamp": 1676815812, "run": 2, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "2", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 7, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 7, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.5 } ], "ballverify": false }, { "event_id": "2771820", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "1", "ball": "6", "score": "1wd", "commentary": "Zaman Khan to James Vince, 1 wide, ", "noball_dismissal": false, "text": "", "timestamp": 1676815849, "run": 1, "noball_run": "0", "wide_run": "1", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": true, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 7, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 8, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 0.5 } ], "ballverify": false }, { "event_id": "2771824", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "1", "ball": "6", "score": 0, "commentary": "Zaman Khan to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815880, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 8, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 8, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1 } ], "ballverify": false }, { "event": "overend", "over": 2, "runs": 8, "score": "17/0", "bats": [ { "runs": 8, "balls_faced": 8, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 6, "balls_faced": 4, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowls": [ { "runs_conceded": 8, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1 }, { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1 } ], "commentary": "End of over 2 (8 runs), Karachi Kings 17/0" }, { "event_id": "2771828", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "2", "ball": "1", "score": 1, "commentary": "Shaheen Afridi to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676815953, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 7, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 8, "balls_faced": 8, "fours": 1, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 10, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1.1 } ], "ballverify": false }, { "event_id": "2771833", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "2", "ball": "2", "score": 1, "commentary": "Shaheen Afridi to James Vince, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816028, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 9, "balls_faced": 9, "fours": 1, "sixes": 0, "batsman_id": 1949 }, { "runs": 7, "balls_faced": 5, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 11, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1.2 } ], "ballverify": false }, { "event_id": "2771839", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "2", "ball": "3", "score": 1, "commentary": "Shaheen Afridi to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816071, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 6, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 9, "balls_faced": 9, "fours": 1, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 12, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1.3 } ], "ballverify": false }, { "event_id": "2771844", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "2", "ball": "4", "score": 4, "commentary": "Shaheen Afridi to James Vince, Four, ", "noball_dismissal": false, "text": "", "timestamp": 1676816097, "run": 4, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "4", "noball": false, "wideball": false, "six": false, "four": true, "batsmen": [ { "runs": 13, "balls_faced": 10, "fours": 2, "sixes": 0, "batsman_id": 1949 }, { "runs": 8, "balls_faced": 6, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 16, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1.4 } ], "ballverify": false }, { "event_id": "2771851", "event": "ball", "batsman_id": "1949", "bowler_id": "92991", "over": "2", "ball": "5", "score": "1b", "commentary": "Shaheen Afridi to James Vince, 1 bye, ", "noball_dismissal": false, "text": "", "timestamp": 1676816145, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "1", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 13, "balls_faced": 11, "fours": 2, "sixes": 0, "batsman_id": 1949 }, { "runs": 8, "balls_faced": 6, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 16, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 1.5 } ], "ballverify": false }, { "event_id": "2771856", "event": "ball", "batsman_id": "43522", "bowler_id": "92991", "over": "2", "ball": "6", "score": 0, "commentary": "Shaheen Afridi to Matthew Wade, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816186, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 7, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 13, "balls_faced": 11, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 16, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 2 } ], "ballverify": false }, { "event": "overend", "over": 3, "runs": 8, "score": "25/0", "bats": [ { "runs": 8, "balls_faced": 7, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 13, "balls_faced": 11, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowls": [ { "runs_conceded": 16, "maidens": 0, "wickets": 0, "bowler_id": 92991, "overs": 2 }, { "runs_conceded": 8, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1 } ], "commentary": "End of over 3 (8 runs), Karachi Kings 25/0" }, { "event_id": "2771860", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "3", "ball": "1", "score": 1, "commentary": "Zaman Khan to James Vince, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816253, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 14, "balls_faced": 12, "fours": 2, "sixes": 0, "batsman_id": 1949 }, { "runs": 8, "balls_faced": 7, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.1 } ], "ballverify": false }, { "event_id": "2771864", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "3", "ball": "2", "score": 0, "commentary": "Zaman Khan to Matthew Wade, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816296, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 8, "balls_faced": 8, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 14, "balls_faced": 12, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 9, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.2 } ], "ballverify": false }, { "event_id": "2771867", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "3", "ball": "3", "score": 1, "commentary": "Zaman Khan to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816330, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 9, "balls_faced": 9, "fours": 1, "sixes": 0, "batsman_id": 43522 }, { "runs": 14, "balls_faced": 12, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 10, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.3 } ], "ballverify": false }, { "event_id": "2771869", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "3", "ball": "4", "score": "1lb", "commentary": "Zaman Khan to James Vince, 1 leg bye, ", "noball_dismissal": false, "text": "", "timestamp": 1676816383, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 14, "balls_faced": 13, "fours": 2, "sixes": 0, "batsman_id": 1949 }, { "runs": 9, "balls_faced": 9, "fours": 1, "sixes": 0, "batsman_id": 43522 } ], "bowlers": [ { "runs_conceded": 10, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.4 } ], "ballverify": false }, { "event_id": "2771872", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "3", "ball": "5", "score": "5nb", "commentary": "Zaman Khan to Matthew Wade, 5 no ball, ", "noball_dismissal": false, "text": "", "timestamp": 1676816415, "run": 5, "noball_run": "1", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "4", "noball": true, "wideball": false, "six": false, "four": true, "batsmen": [ { "runs": 13, "balls_faced": 10, "fours": 2, "sixes": 0, "batsman_id": 43522 }, { "runs": 14, "balls_faced": 13, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 11, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.4 } ], "ballverify": false }, { "event_id": "2771880", "event": "ball", "batsman_id": "43522", "bowler_id": "95942", "over": "3", "ball": "5", "score": 1, "commentary": "Zaman Khan to Matthew Wade, 1 run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816497, "run": 1, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "1", "noball": false, "wideball": false, "six": false, "four": false, "batsmen": [ { "runs": 14, "balls_faced": 11, "fours": 2, "sixes": 0, "batsman_id": 43522 }, { "runs": 14, "balls_faced": 13, "fours": 2, "sixes": 0, "batsman_id": 1949 } ], "bowlers": [ { "runs_conceded": 12, "maidens": 0, "wickets": 0, "bowler_id": 95942, "overs": 1.5 } ], "ballverify": false }, { "event_id": "2771881", "event": "ball", "batsman_id": "1949", "bowler_id": "95942", "over": "3", "ball": "6", "score": 0, "commentary": "Zaman Khan to James Vince, no run, ", "noball_dismissal": false, "text": "", "timestamp": 1676816506, "run": 0, "noball_run": "0", "wide_run": "0", "bye_run": "0", "legbye_run": "0", "bat_run": "0", "nob