Broadcasts

Get a broadcast round

Get information about a broadcast round.

get/api/broadcast/{broadcastTournamentSlug}/{broadcastRoundSlug}/{broadcastRoundId}

Path parameters

broadcastTournamentSlugstring required

The broadcast tournament slug. Only used for SEO, the slug can be safely replaced by -. Only the broadcastRoundId is actually used.

broadcastRoundSlugstring required

The broadcast round slug. Only used for SEO, the slug can be safely replaced by -. Only the broadcastRoundId is actually used.

broadcastRoundIdstring required

The broadcast Round ID

Response

The information about the broadcast round.

isSubscribedboolean

Indicates if the user making the request is subscribed to the broadcast

photosBroadcastPhotos required

Photos of players, when available. The object keys are FIDE IDs

Example response

{
  "tour": {
    "createdAt": 1722169800000,
    "dates": [
      1722169800000,
      1722666600000
    ]
  }
}

Changes

Changed in 3 of the 8 revisions of this API.212

  • c5ccdaeee7c411See the full diff
    • removed the required property round/createdAt from the response with the 200 status

      response-required-property-removed

    • removed the optional property round/delay from the response with the 200 status

      response-optional-property-removed

  • 29f066e5ebda11See the full diff
    • the response property round/rated became optional for the status 200

      response-property-became-optional

    • response property round/finished deprecated

      response-property-deprecated

    • the endpoint scheme security OAuth2 was added to the API

      api-security-added