Golf API – Round Info Added to Tournament Leaderboard
August 7th, 2026
We've added tournament round information to the Tournament Leaderboard feed in our Golf API.
The rounds array includes each round's id, number (its sequence in the tournament), status (such as scheduled, inprogress, or closed), and format (for match-play events, when applicable).
"rounds": [
{
"id": "66ab6f39-7f0d-47ed-9e28-377e4b525137",
"number": 1,
"status": "closed"
},
{
"id": "22eefe33-98bf-43ac-a224-b83325ba106d",
"number": 2,
"status": "inprogress"
},
...⭐ Benefit
Retrieve round IDs, numbers, and statuses directly from the Tournament Leaderboard feed, without a separate call to Tournament Summary or Tee Times Per Round.
📋 Recommended Actions
- Read the
roundsarray from the Tournament Leaderboard feed to get round IDs, numbers, and statuses in a single call. - If you currently pull round data from Tournament Summary or Tee Times Per Round, consider sourcing it from the leaderboard feed instead to reduce API calls.
- Handle
formatas optional — it reflects match-play format when applicable and will be null or absent for standard stroke-play tournaments. - See all valid round statuses and their definitions in our FAQ.
☑️ Sample Requests:
Leaderboard Endpoint
curl --request GET \
--url https://api.sportradar.com/golf/trial/pga/v3/en/2026/tournaments/e9233d22-a9d9-4ba6-8d44-b3a65c794b41/leaderboard.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Products
| Sport | Product | Version(s) |
|---|---|---|
| Golf | Golf API | v3 |
🔁 Endpoints Affected
⚙️ Return Samples
<tournament xmlns="http://feed.elasticstats.com/schema/golf/tournament/leaderboard-v3.0.xsd" id="e9233d22-a9d9-4ba6-8d44-b3a65c794b41" name="Wyndham Championship" event_type="stroke" purse="8500000.0" winning_share="1476000.0" currency="USD" points="500" start_date="2026-08-06" end_date="2026-08-09" course_timezone="America/New_York" status="inprogress" projected_cutline="-3" cut_round="2" parent_id="36e9b085-8d1c-415e-9289-c14949015ef4" coverage="full">
<rounds>
<round id="66ab6f39-7f0d-47ed-9e28-377e4b525137" number="1" status="closed"/>
<round id="22eefe33-98bf-43ac-a224-b83325ba106d" number="2" status="inprogress"/>
<round id="858dd667-aa0c-4abf-96b7-91819c303c45" number="3" status="scheduled"/>
<round id="95eaa578-1a98-43c3-8a40-5e12a3acdef3" number="4" status="scheduled"/>
</rounds>
...{
"id": "e9233d22-a9d9-4ba6-8d44-b3a65c794b41",
"name": "Wyndham Championship",
"event_type": "stroke",
"purse": 8500000.0,
"winning_share": 1476000.0,
"currency": "USD",
"points": 500,
"start_date": "2026-08-06",
"end_date": "2026-08-09",
"course_timezone": "America/New_York",
"status": "inprogress",
"projected_cutline": -3,
"cut_round": 2,
"parent_id": "36e9b085-8d1c-415e-9289-c14949015ef4",
"seasons": [
{
"id": "e4694c64-017f-432f-b80e-28bcec314ca6",
"year": 2026,
"tour": {
"id": "b52068af-28e4-4e91-bdbb-037591b0ff84",
"alias": "pga",
"name": "PGA Tour"
}
}
],
"coverage": "full",
"rounds": [
{
"id": "66ab6f39-7f0d-47ed-9e28-377e4b525137",
"number": 1,
"status": "closed"
},
{
"id": "22eefe33-98bf-43ac-a224-b83325ba106d",
"number": 2,
"status": "inprogress"
},
{
"id": "858dd667-aa0c-4abf-96b7-91819c303c45",
"number": 3,
"status": "scheduled"
},
{
"id": "95eaa578-1a98-43c3-8a40-5e12a3acdef3",
"number": 4,
"status": "scheduled"
}
],
...