day basic
View all matches of a specific day ⬜ 🟨 🟦 🟩
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
{
"status":200,
"errors":[],
"pagination":[ // only if d is today or a future days
{
"page":1, // current page
"per_page":100, // items per page
"items":54 // number of items
}
],
"result":[
{
"id":"5fb9682ab4fbd853",
"date":"2020-01-02 08:06:10",
"status":"ENDED", // can be: IN_PLAY, BREAK, ENDED, CANCELLED, POSTPONE AND NOT_STARTED
"timer":"90:00", // match timer if is in extra time there is +minute eg. 90:00+01:00
"championship":{
"id":"5fda5fab10354812",
"name":"India Bangalore Super Division",
"s_name": "India Bangalore Super Division 20" // seson name
},
"teamA":{
"id":"5fda6013de647f33",
"name":"Bangalore Dream United FC",
"score":{
"f":"1", // final score
"1h":"0", // 1 half
"2h":"1", // 2 half
"o":null, // overtime
"p":null // penalties
},
"perf":{ // only in present and future match
"l_5_matches" : "WLWLW", // last 5 match performance (from left to right)
"avg_game_goals" : "2.5",
"avg_goals_scored" : "1.5",
"avg_goals_conceded" : "0.5",
"o_1_5_team" : "50", // percent of over 1.5 by team in last 5 matches
"btts" : "60", // percent of btts
"o_0_5_game" : "100", // percent of over 0.5 by game in last 5 matches
"o_1_5_game" : "100", // percent of over 1.5 by game in last 5 matches
"o_2_5_game" : "100", // percent of over 2.5 by game in last 5 matches
"o_3_5_game" : "100", // percent of over 3.5 by game in last 5 matches
"tot_goals_scored" : "10", // total goals scored in last 5 matches
"goals_scored_0_15": ["0","0"], // goals scored between 0 and 15 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_scored_16_30": ["1","10"], // goals scored between 16 and 30 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_scored_31_45": ["1","10"], // goals scored between 31 and end first half minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_scored_46_60": ["1","10"], // goals scored between 46 and 60 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_scored_61_75": ["5","50"], // goals scored between 61 and 75 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_scored_76_90": ["2","20"], // goals scored between 76 and end second half in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"tot_goals_conceded": "10", // total goals conceded in last 5 matches
"goals_conceded_0_15": ["0","0"], // goals conceded between 0 and 15 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_conceded_16_30": ["1","10"], // goals conceded between 16 and 30 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_conceded_31_45": ["1","10"], // goals conceded between 31 and end first half minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_conceded_46_60": ["1","10"], // goals conceded between 46 and 60 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_conceded_61_75": ["5","50"], // goals conceded between 61 and 75 minute in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
"goals_conceded_76_90": ["2","20"] // goals conceded between 76 and end second half in last 5 matches format [NUMBER_GOAL ; PERCENT_OF_TOTAL]
},
"position" : "1", // position in championship (if)
"stats":{
"possession":"40",
"attacks":{
"n":"125", // normal
"d":"83", // dangerous
"o_s":"5" // off side
},
"shoots":{
"t":"3", // total
"off":"2", // off target shot
"on":"1", // on target shot
"g_a":"2" // goal attemps
},
"penalties":"0",
"corners":{
"t":"4", // total
"f":"4",// final
"h":"2" // 1 half
},
"fouls":{
"t":null, // total fouls
"y_c":"0", // yellow card
"y_t_r_c":null, // yellow to red card
"r_c":"0" // red card
},
"substitutions":"2",
"throwins":null,
"injuries":null,
"dominance_avg_2_5": "10.10", // average of last 2.5 minutes of dominance index
"xG" : {
"kickoff" : "1.02", // Expected goal at kickoff
"live" : "0.88" // Current expected goal
}
},
"manager":{
"id":"5fb962e92066c1b6",
"name":"Gama"
}
},
"teamB":{
// same as teamA
},
"events":[
{
"type":"goal", // can be: corner, goal, yellow_card, red_card, substitution, penalty_ot_score, penalty_ot_miss
"timer":"90+1", // event time if + it's overtime or null if is in penalties
"team":"B" // ref team A or B
},
...
],
"dominance_index": [
{
"timer":"00:00", // timer of dominance index
"teamA":"5",
"teamB":"5"
},
...
],
"referee":{ // or null
"id":"5fb96963d60bb8bc",
"name":"Jesus Gil Manzano"
},
"stadium":{
"id":"5fb96978c6a5b482",
"name":"Estadio dos Arcos"
},
"bet365_url" : "https://www.bet365.EXT/#/AC/B1/C1/D8/E128998076/F3"
},
...
]
}Example of code for direct API
Example of code for RapidAPI
Last updated