Countries
API Documentation (2.0.7)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.goalise.com/_mock/apireference/openapi/
Goalise API Server
https://api.goalise.com/api/v2/
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/team
- Goalise API Server
https://api.goalise.com/api/v2/team
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/team?id=60' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "status": "success", "pagination": null, "errors": null, "response": { "id": 33, "name": "Manchester United", "logo": "https://example.com/logos/teams/manutd.png", "founded": "1878", "venue": { … }, "country": { … } } }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/teams-by-league
- Goalise API Server
https://api.goalise.com/api/v2/teams-by-league
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/teams-by-league?league_id=621&season=2024' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "status": "success", "pagination": {}, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/team-statistics
- Goalise API Server
https://api.goalise.com/api/v2/team-statistics
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/team-statistics?league_id=621&team_id=60&season=2024' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "status": "success", "pagination": null, "errors": null, "response": { "form": "WWWWWWWDDDDWW", "fixtures": { … }, "goals": { … }, "biggest": { … }, "clean_sheet": { … }, "failed_to_score": { … }, "lineups": [ … ], "penalty": { … }, "cards": { … } } }