> For the complete documentation index, see [llms.txt](https://docs.sportradar.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportradar.com/live-data/live-data-golf-api-design/ld-golf-api-documentation/ld-golf-api-endpoints-static/schedule.md).

# Schedule

### Overview

Use this endpoint to retrieve the full tournament schedule in one response.

Stroke play rounds appear in `stroke_play.groups`. Match play rounds appear in `match_play.matches`.

A tournament can use one format or both. Unused format sections return an empty array.

### Request

**URL**

`GET https://{domain}/golf/rest/v1/tournaments/{tournament_id}/schedule`

### Path parameters

| **Name**        | **Type** | **Required** | **Description**                                  |
| --------------- | -------- | ------------ | ------------------------------------------------ |
| `tournament_id` | integer  | Yes          | ID of the tournament whose schedule is returned. |

### Example request

{% code title="Get a tournament schedule" overflow="wrap" %}

```http
GET /golf/rest/v1/tournaments/12345/schedule HTTP/1.1
Host: {domain}
Authorization: Bearer <JWT_TOKEN>
```

{% endcode %}

{% hint style="info" %}
Groups and matches can appear as the schedule is updated.
{% endhint %}

### Response example

{% code overflow="wrap" expandable="true" %}

```json
{
  "stroke_play": {
    "groups": [
      {
        "sr_group_id": "sr:group_match:294222",
        "group_number": 10,
        "date": "2026-05-13",
        "round_number": 1,
        "start_hole": 10,
        "course_id": 12345,
        "position_in_sequence_of_groups_on_tee": 1,
        "status": "NOT_STARTED",
        "start_time": "2026-05-13T10:00:00Z",
        "teams": [
          {
            "team_id": 2942221,
            "sr_team_id": "sr:team:2942221",
            "order_within_group": 1,
            "players": [
              {
                "player_id": 22,
                "sr_player_id": "sr:competitor:22",
                "country": "ENG",
                "display_name": "Tommy Fleetwood",
                "first_name": "Tommy",
                "last_name": "Fleetwood",
                "is_amateur": false,
                "player_pga_tour_id": "30911"
              }
            ]
          }
        ]
      }
    ]
  },
  "match_play": {
    "matches": [
      {
        "match_id": 294222,
        "sr_match_id": "sr:match:294222",
        "date": "2026-05-13",
        "round_number": 1,
        "start_hole": 10,
        "course_id": 12345,
        "position_in_sequence_of_matches_on_tee": 1,
        "status": "NOT_STARTED",
        "start_time": "2026-05-13T10:00:00Z",
        "teams": [
          {
            "team_id": 2942221,
            "sr_team_id": "sr:team:2942221",
            "order_within_match": 1,
            "players": [
              {
                "player_id": 22,
                "sr_player_id": "sr:competitor:22",
                "country": "ENG",
                "display_name": "Tommy Fleetwood",
                "first_name": "Tommy",
                "last_name": "Fleetwood",
                "is_amateur": false,
                "player_pga_tour_id": "30911"
              }
            ]
          }
        ]
      }
    ]
  }
}
```

{% endcode %}

### Stroke play response fields

| Field                                            | Type          | Description                                      | Required | Required in PGA | Old IMGA API equivalent |
| ------------------------------------------------ | ------------- | ------------------------------------------------ | -------- | --------------- | ----------------------- |
| `stroke_play.groups`                             | array         | Known groups in the tournament.                  | Yes      |                 | Root response array     |
| `groups[].sr_group_id`                           | string        | Group ID in SR format.                           | Yes      |                 | -                       |
| `groups[].group_number`                          | integer       | Group number within the round.                   | Yes      |                 | `groupNo`               |
| `groups[].date`                                  | date          | Day the group plays.                             | Yes      |                 | `date`                  |
| `groups[].round_number`                          | integer       | Round number.                                    | Yes      |                 | `round`                 |
| `groups[].start_hole`                            | integer       | Starting hole number.                            | Yes      |                 | `hole`                  |
| `groups[].course_id`                             | integer       | ID of the course used by the group.              | Yes      |                 | `courseId`              |
| `groups[].position_in_sequence_of_groups_on_tee` | integer       | Sequence on the tee.                             | Yes      |                 | `teeSeq`                |
| `groups[].status`                                | string (enum) | `NOT_STARTED`, `IN_PROGRESS`, or `ENDED`.        | Yes      |                 | `status`                |
| `groups[].start_time`                            | UTC date-time | Scheduled round start time.                      | Yes      |                 | `startTime.time`        |
| `groups[].teams`                                 | array         | Teams in the group.                              | Yes      |                 | `teams`                 |
| `groups[].teams[].team_id`                       | integer       | Numeric team ID.                                 | Yes      |                 | `teamNo`                |
| `groups[].teams[].sr_team_id`                    | string        | Team ID in SR format.                            | Yes      |                 | -                       |
| `groups[].teams[].order_within_group`            | integer       | Order in which the team starts within the group. | Yes      |                 | -                       |
| `groups[].teams[].players`                       | array         | Players in the team.                             | Yes      |                 | `players`               |
| `groups[].teams[].players[].player_id`           | integer       | Numeric player ID.                               | Yes      |                 | `playerId`              |
| `groups[].teams[].players[].sr_player_id`        | string        | Player ID in SR format.                          | Yes      |                 | -                       |
| `groups[].teams[].players[].country`             | string        | ISO alpha-3 country code.                        | Yes      |                 | `country`               |
| `groups[].teams[].players[].display_name`        | string        | Full display name.                               | Yes      |                 | `displayName`           |
| `groups[].teams[].players[].first_name`          | string        | First name.                                      | Yes      |                 | `firstName`             |
| `groups[].teams[].players[].last_name`           | string        | Last name.                                       | Yes      |                 | `lastName`              |
| `groups[].teams[].players[].is_amateur`          | boolean       | `true` for amateur players.                      | Yes      |                 | `isAmateur`             |
| `groups[].teams[].players[].player_pga_tour_id`  | integer       | PGA Tour player ID.                              | No       | Yes             | `playerPGATourId`       |

### Match play response fields

| Field                                              | Type          | Description                                          | Required | Required in PGA | Old IMGA API equivalent |
| -------------------------------------------------- | ------------- | ---------------------------------------------------- | -------- | --------------- | ----------------------- |
| `match_play.matches`                               | array         | Known matches in the tournament.                     | Yes      |                 | Root response array     |
| `matches[].match_id`                               | integer       | Numeric match ID.                                    | Yes      |                 | `matchNo`               |
| `matches[].sr_match_id`                            | string        | Match ID in SR format.                               | Yes      |                 | -                       |
| `matches[].date`                                   | date          | Day the match is played.                             | Yes      |                 | `date`                  |
| `matches[].round_number`                           | integer       | Round number.                                        | Yes      |                 | `round`                 |
| `matches[].start_hole`                             | integer       | Starting hole number.                                | Yes      |                 | `hole`                  |
| `matches[].course_id`                              | integer       | ID of the course used by the match.                  | Yes      |                 | `courseId`              |
| `matches[].position_in_sequence_of_matches_on_tee` | integer       | Sequence on the tee.                                 | Yes      |                 | `teeSeq`                |
| `matches[].status`                                 | string (enum) | `NOT_STARTED`, `IN_PROGRESS`, or `ENDED`.            | Yes      |                 | `status`                |
| `matches[].start_time`                             | UTC date-time | Scheduled match start time.                          | Yes      |                 | `startTime.time`        |
| `matches[].teams`                                  | array         | Teams in the match.                                  | Yes      |                 | `teams`                 |
| `matches[].teams[].team_id`                        | integer       | Numeric team ID.                                     | Yes      |                 | `teamNo`                |
| `matches[].teams[].sr_team_id`                     | string        | Team ID in SR format.                                | Yes      |                 | -                       |
| `matches[].teams[].order_within_match`             | integer       | Order in which team(competitior) starts within match | Yes      |                 | -                       |
| `matches[].teams[].players`                        | array         | Players in the team.                                 | Yes      |                 | `players`               |
| `matches[].teams[].players[].player_id`            | integer       | Numeric player ID.                                   | Yes      |                 | `playerId`              |
| `matches[].teams[].players[].sr_player_id`         | string        | Player ID in SR format.                              | Yes      |                 | -                       |
| `matches[].teams[].players[].country`              | string        | ISO alpha-3 country code.                            | Yes      |                 | `country`               |
| `matches[].teams[].players[].display_name`         | string        | Full display name.                                   | Yes      |                 | `displayName`           |
| `matches[].teams[].players[].first_name`           | string        | First name.                                          | Yes      |                 | `firstName`             |
| `matches[].teams[].players[].last_name`            | string        | Last name.                                           | Yes      |                 | `lastName`              |
| `matches[].teams[].players[].is_amateur`           | boolean       | `true` for amateur players.                          | Yes      |                 | `isAmateur`             |
| `matches[].teams[].players[].player_pga_tour_id`   | integer       | PGA Tour player ID.                                  | No       | Yes             | `playerPGATourId`       |

### Related endpoints

* [Tournaments list](/live-data/live-data-golf-api-design/ld-golf-api-documentation/ld-golf-api-endpoints-static/tournaments-list.md)
* [Single Tournament](/live-data/live-data-golf-api-design/ld-golf-api-documentation/ld-golf-api-endpoints-static/single-tournament.md)
* [Entrylist](/live-data/live-data-golf-api-design/ld-golf-api-documentation/ld-golf-api-endpoints-static/entrylist.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sportradar.com/live-data/live-data-golf-api-design/ld-golf-api-documentation/ld-golf-api-endpoints-static/schedule.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
