sportmonks_fixtures_by_date
Retrieve sports fixtures for a specific date. Include participants and scores to get team names and match results in the response.
Instructions
Fixtures on one date. Add include=participants;scores or you will get ids without teams or a score.
Returns: {data:[{id, sport_id, league_id, season_id, name:'Home vs Away', starting_at, result_info, state_id, participants:[…only if included…], scores:[{score:{goals, participant}, description:'CURRENT'|'1ST_HALF'|…}]}], pagination} — SHAPE FROM VENDOR DOCS. scores is a LIST of period scores; pick description == 'CURRENT' for the live/final figure.
NOTE: this shape is from the vendor's documentation and has NOT been verified against a live response (we hold no key for this provider). Treat it as approximate — inspect the actual payload before relying on a field name.
Example: A date's fixtures with teams and scores {"date": "2024-08-17", "include": "participants;scores"}
Auth: needs your own key in SPORTMONKS_TOKEN.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | YYYY-MM-DD. Required — part of the URL path. | |
| include | No | e.g. 'participants;scores;league;venue'. WITHOUT THIS the response has no team names and no score. | |
| per_page | No | Page size. |