Endpoint

This endpoint returns a list of all currently live sport events along with relevant details such as event ID, name, where and when the event is happening, who is competing in the event etc,

Technically, this endpoint lists all the sport events whose start_date = 'today'. When a sport event is held for more than a day, it is not included in the list after the start date.

Note

If a match starts on one day and is interrupted and continued someday later, it will not appear in the current live sports events. This might happen more frequently in sports like snooker and tennis.

Endpoint Structure

The endpoint is structured as follows:

  • <schedule>

    • <sport_event>

      • <tournament_round>

      • <season>

      • <tournament>

        • <sport>

        • <category>

      • <competitors>

        • <competitor>

          • <reference_ids>

            • <reference_id>

Currently live sport events

get

Lists all live sport events and information about them. XML schema

Authorizations
Path parameters
languagestringRequired

Language code for translation.

Responses
200

successful operation

application/xml
get
GET /v1/sports/{language}/schedules/live/schedule.xml HTTP/1.1
Host: global.api.betradar.com
x-access-token: YOUR_API_KEY
Accept: */*
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<schedule xmlns="http://schemas.sportradar.com/sportsapi/v1/unified" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2024-02-22T01:03:06+00:00" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/v1/unified http://schemas.sportradar.com/ufsportsapi/v1/endpoints/unified/ufsportsapi.xsd">
  <sport_event liveodds="not_available" status="not_started" next_live_time="2024-02-21T01:30:00+00:00" id="sr:match:45046912" scheduled="2024-02-21T01:30:00+00:00" start_time_tbd="false">
    <tournament_round type="group" number="1" group_long_name="NCAA" betradar_id="698"/>
    <season start_date="2023-11-03" end_date="2024-03-17" year="23/24" tournament_id="sr:tournament:648" id="sr:season:104319" name="NCAA, Regular Season 23/24"/>
    <tournament id="sr:tournament:648" name="NCAA, Regular Season">
      <sport id="sr:sport:2" name="Basketball"/>
      <category id="sr:category:15" name="USA" country_code="USA"/>
    </tournament>
    <competitors>
      <competitor qualifier="home" id="sr:competitor:477358" name="Lane Dragons" abbreviation="LAN" short_name="Lane" country="USA" country_code="USA" gender="male" state="TN" division="2">
        <reference_ids>
          <reference_id name="betradar" value="11212150"/>
        </reference_ids>
      </competitor>
      <competitor qualifier="away" id="sr:competitor:470515" name="Arkansas Baptist Buffaloes" abbreviation="ABC" short_name="Arkansas Baptist" country="USA" country_code="USA" gender="male">
        <reference_ids>
          <reference_id name="betradar" value="11167555"/>
        </reference_ids>
      </competitor>
    </competitors>
  </sport_event>

  <sport_event liveodds="bookable" status="ended" next_live_time="2024-02-21T01:30:00+00:00" id="sr:match:47964269" scheduled="2024-02-21T01:30:00+00:00" start_time_tbd="false">
    <tournament_round betradar_id="72985"/>
    <tournament id="sr:simple_tournament:72985" name="Liga Nacional Varonil">
      <sport id="sr:sport:29" name="Futsal"/>
      <category id="sr:category:1728" name="Guatemala" country_code="GTM"/>
    </tournament>
    <competitors>
      <competitor qualifier="home" id="sr:competitor:505814" name="Csd Tellioz" abbreviation="CSD" country="Guatemala" country_code="GTM" gender="male">
        <reference_ids>
          <reference_id name="betradar" value="11175119"/>
        </reference_ids>
      </competitor>
      <competitor qualifier="away" id="sr:competitor:470951" name="Glucosoral Fsc" abbreviation="GLU" country="Guatemala" country_code="GTM" gender="male">
        <reference_ids>
          <reference_id name="betradar" value="11168719"/>
        </reference_ids>
      </competitor>
    </competitors>
  </sport_event>

  ... other live sport events information ...

</schedule>

Last updated

Was this helpful?