curl --location --request GET 'https://api.challonge.com/v2/races//rounds//elapsed_times.json?page&per_page' \
--header 'Accept;' \
--header 'Authorization-Type;' \
--header 'If-None-Match;' \
--header 'Authorization: <api-key>'{
"data": [
{
"id": "123456",
"type": "Elapsed Time",
"attributes": {
"elapsedTime": 1000,
"points": 0,
"rank": 1,
"formattedTime": "00:00:001.001",
"timestamps": {
"startsAt": "string",
"createdAt": "string",
"updatedAt": "string",
"completedAt": "string"
}
},
"relationships": {
"participant": {
"data": {
"id": "45",
"type": "participant"
},
"links": {
"related": "https://api.challonge.com/V2/tournament/<url>/participants/<participant_id>.json"
}
}
},
"links": {
"self": "https://api.challonge.com/races/<url>/rounds/<round_id>/elapsed_times.json"
}
}
]
}