sportmonks_fixture
Fetch a single fixture by ID and optionally include lineups, events, statistics, and participants for complete match data.
Instructions
One fixture. The include you choose decides whether you get lineups, events and statistics.
Returns: {data:{id, name, starting_at, result_info, participants:[…], scores:[…], events:[{type_id, minute, player_name, related_player_name, result}], lineups:[…], statistics:[…]}} — SHAPE FROM VENDOR DOCS. Events use NUMERIC type_ids, not names — resolve them via sportmonks_types.
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 fixture with events {"id": 18535517, "include": "participants;scores;events"}
Auth: needs your own key in SPORTMONKS_TOKEN.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Fixture id. Required — part of the URL path. | |
| include | No | e.g. 'participants;scores;events;lineups.player;statistics'. Nesting depth is capped on the free tier. |