Get draw with full bracket
GET
/api/v1/draws/{id}
const url = 'https://internal.myscore.live/api/v1/api/v1/draws/draw_abc123';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://internal.myscore.live/api/v1/api/v1/draws/draw_abc123Returns draw details including all bracket entries, matches, and players.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
draw_abc123Draw ID
Responses
Section titled “ Responses ”Draw details with bracket
Media type application/json
object
id
required
Draw ID
string
name
required
Draw name
string
tournamentId
required
Tournament ID
string
size
required
Bracket size
number
matchFormat
required
Match format
string
tiebreakAt
Game score at which tiebreak triggers
number
finalSetTiebreak
Whether final set uses tiebreak
boolean
matchTiebreakTo
Points target for match tiebreak
number
finalized
required
Whether draw is finalized
boolean
goldenPoint
required
Padel Golden Point rule. Metadata only — not enforced by scoring engine yet.
boolean
gender
Gender restriction
string
ageCategory
Age category
string
parentDrawId
Parent draw ID (for qualifier draws)
string
qualifyingSpots
Qualifying spots that advance to parent draw
number
createdAt
required
Creation timestamp
string format: date-time
updatedAt
required
Last update timestamp
string format: date-time
entries
Bracket entries with matches and players
Array<object>
object
Example
{ "id": "draw_abc123", "name": "Men's Singles", "tournamentId": "tourn_abc123", "size": 16, "matchFormat": "best_of_3_mtb", "tiebreakAt": 6, "finalSetTiebreak": true, "matchTiebreakTo": null, "finalized": false, "goldenPoint": false, "gender": "male", "ageCategory": "Open", "parentDrawId": "draw_parent123", "qualifyingSpots": 2, "createdAt": "2026-01-15T10:00:00Z", "updatedAt": "2026-01-15T12:00:00Z", "entries": [ { "id": "entry_1", "round": 1, "position": 1, "matchId": "mat_1", "player": { "id": "plr_1", "name": "Federer" } } ]}Draw not found