Countries
API Documentation (2.0.7)
https://docs.goalise.com/_mock/apireference/openapi/
https://api.goalise.com/api/v2/
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-categories
- Goalise API Server
https://api.goalise.com/api/v2/news-categories
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.goalise.com/_mock/apireference/openapi/news-categories \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": {}, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-by-category
- Goalise API Server
https://api.goalise.com/api/v2/news-by-category
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/news-by-category?id=3&page=1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-by-league
- Goalise API Server
https://api.goalise.com/api/v2/news-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/news-by-league?id=618&page=1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-by-team
- Goalise API Server
https://api.goalise.com/api/v2/news-by-team
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/news-by-team?id=69&page=1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-by-date
- Goalise API Server
https://api.goalise.com/api/v2/news-by-date
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/news-by-date?date=2025-03-01&page=1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": { "total_count": 10, "page_size": 10, "page_count": 1, "current_page": 1 }, "errors": null, "response": [ { … } ] }
- Mock server
https://docs.goalise.com/_mock/apireference/openapi/news-content
- Goalise API Server
https://api.goalise.com/api/v2/news-content
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.goalise.com/_mock/apireference/openapi/news-content?id=275071' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "status": "success", "pagination": null, "errors": null, "response": { "id": 177544, "title": "Barcelona sensation Lamine Yamal to take next step forward in injury recovery", "image": "https://cdn.goalise.com/news/uploads/01-01-2025/6526bcca719e3296421afca86a478292.jpg", "alias": "2025-01-01-barcelona-sensation-lamine-yamal-to-take-next-step-forward-in-injury-recovery", "original_url": "https://www.football-espana.net/2025/01/01/barcelona-sensation-lamine-yamal-to-take-next-step-forward-in-injury-recovery", "lang": "en", "published_at": "01-01-2025 23:17:12", "categories": [ … ], "leagues": [ … ], "teams": [ … ], "html_content": "<body>html of article here</body>", "html_content_scripts": "<script></script>" } }