https://docs.goalise.com/_mock/apireference/openapi/
https://api.goalise.com/api/v2/
https://docs.goalise.com/_mock/apireference/openapi/match
https://api.goalise.com/api/v2/match
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/match?id=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": {}, "errors": null, "response": { "0": {}, "id": 1234, "league_id": 5, "home_team_id": 10, "away_team_id": 12, "timestamp": 1713261600, "timezone": "UTC", "date": "2025-04-16T15:00:00Z", "referee": "John Doe", "venue_id": 3, "round": "Round 5", "group": "Group A", "season": "2024/2025", "periods": { … }, "status": { … }, "score": { … }, "events": [ … ], "statistics": [ … ] } }
https://docs.goalise.com/_mock/apireference/openapi/matches
https://api.goalise.com/api/v2/matches
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/matches?date=string&date_from=string&date_to=string&id_list=string&league_id=0&live=string&page=1&season=0&status=string&team_id=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
https://docs.goalise.com/_mock/apireference/openapi/match-events
https://api.goalise.com/api/v2/match-events
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/match-events?id=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": {}, "errors": null, "response": [ { … } ] }
https://docs.goalise.com/_mock/apireference/openapi/match-statistics
https://api.goalise.com/api/v2/match-statistics
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/match-statistics?id=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": {}, "errors": null, "response": { "0": {}, "shots_on_goal": { … }, "shots_off_goal": { … }, "total_shots": { … }, "blocked_shots": { … }, "shots_inside_box": { … }, "shots_outside_box": { … }, "fouls": { … }, "corner_kicks": { … }, "offsides": { … }, "ball_possession": { … }, "yellow_cards": { … }, "red_cards": { … }, "goalkeeper_saves": { … }, "total_passes": { … }, "passes_accurate": { … }, "passes_percentage": { … }, "expected_goals": { … }, "goals_prevented": { … } } }
https://docs.goalise.com/_mock/apireference/openapi/match-lineup
https://api.goalise.com/api/v2/match-lineup
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/match-lineup?id=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": {}, "errors": null, "response": [ { … } ] }
https://docs.goalise.com/_mock/apireference/openapi/head-to-head
https://api.goalise.com/api/v2/head-to-head
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/head-to-head?league_id=0&season=0&team_id1=0&team_id2=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "status": "success", "pagination": {}, "errors": null, "response": [ { … } ] }