Ski jumping

Ski jumping is organized into stages. In order to get to know all the stages it is necessary to filter the id of the sport (48) into the "All tournaments for a sport" end point as shown below.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  <sport_tournaments xmlns="http://schemas.sportradar.com/sportsapi/v1/unified" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2021-10-27T14:17:16+00:00" 
xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/v1/unified http://schemas.sportradar.com/ufsportsapi/v1/endpoints/unified/ufsportsapi.xsd">
    <sport id="sr:sport:48" name="Ski Jumping"/>
    <tournaments>
      <tournament id="sr:stage:617657" name="Ski Jumping 2020/21" scheduled="2020-11-21T15:00:00+00:00" scheduled_end="2021-03-28T23:00:00+00:00">
        <sport id="sr:sport:48" name="Ski Jumping"/>
        <category id="sr:category:140" name="Ski Jumping"/>
      </tournament>
      <tournament id="sr:stage:617983" name="World Championships 2021" scheduled="2021-02-27T15:30:00+00:00" scheduled_end="2021-03-06T18:15:00+00:00">
        <sport id="sr:sport:48" name="Ski Jumping"/>
        <category id="sr:category:140" name="Ski Jumping"/>
      </tournament>
      <tournament id="sr:stage:617985" name="World Championships 2023" scheduled="2023-02-23T00:00:00+00:00" scheduled_end="2023-03-07T23:00:00+00:00">
        <sport id="sr:sport:48" name="Ski Jumping"/>
        <category id="sr:category:140" name="Ski Jumping"/>
      </tournament>
      <tournament id="sr:stage:618093" name="Ski Jumping 2020/21" scheduled="2020-12-05T16:30:00+00:00" scheduled_end="2021-03-28T00:00:00+00:00">
        <sport id="sr:sport:48" name="Ski Jumping"/>
        <category id="sr:category:547" name="Ski Jumping Women"/>
      </tournament>
    </tournaments>
  </sport_tournaments>

To get more info regarding the stages of ski jumping it is possible to filter one of the stages above into "Information about a tournament"

<?xml version="1.0" encoding="UTF-8"?>
  <tournament_info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2021-10-27T14:19:58+00:00" 
xmlns="http://schemas.sportradar.com/sportsapi/v1/unified" 
xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/v1/unified http://schemas.sportradar.com/bsa/unified/v1/xml/endpoints/unified/tournament_info.xsd">
    <tournament id="sr:stage:617657" scheduled="2020-11-21T15:00:00+00:00" scheduled_end="2021-03-28T23:00:00+00:00" name="Ski Jumping 2020/21">
      <sport id="sr:sport:48" name="Ski Jumping"/>
      <category id="sr:category:140" name="Ski Jumping"/>
    </tournament>
    <coverage_info live_coverage="false"/>
  </tournament_info>

Last updated

Was this helpful?