apitennis_fixtures
Retrieve tennis fixtures for a date range, with scores and set-by-set details provided once matches are played.
Instructions
Matches in a date range, with scores and set-by-set detail once played.
Returns: {success:1, result:[{event_key, event_date, event_time, event_first_player, first_player_key, event_second_player, second_player_key, event_final_result:'2 - 0', event_status, tournament_name, tournament_round, scores:[{score_first, score_second, score_set}], pointbypoint:[…]}]} — SHAPE FROM VENDOR DOCS.
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 day's matches {"method": "get_fixtures", "date_start": "2025-01-20", "date_stop": "2025-01-20"}
Auth: needs your own key in API_TENNIS_KEY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | No | Leave as-is. | get_fixtures |
| date_stop | Yes | YYYY-MM-DD. | |
| date_start | Yes | YYYY-MM-DD. | |
| player_key | No | Restrict to one player. | |
| event_type_key | No | Restrict to one event type. | |
| tournament_key | No | Restrict to one tournament. |