Endpoint

This endpoint provides a summary of information regarding a sporting event, tailored to the event type: Prematch, Live, or Post-match. Prematch details are very brief, while post-match results are included.

Please note that the <id> must use a URN schema.

  • sr:match:<id> for match-ids

  • sr:stage:<id> for race results.

  • sr:tournament:<id> for tournament results, etc.

Endpoint Parameters

Parameter

Description

Possible Values

language

Required

Language code for translation.

See all supported languages and their codes on language support

urn_type

Required

The type of event to look up.

sr:match, sr:stage, sr:season, sr:tournament, sr:simple_tournament, vf:match, vf:season, vf:tournament, vbl:match, vbl:season, vbl:tournament, vto:match, vto:season, vto:tournament, vdr:stage, vhc:stage, vti:match, vti:tournament, codds:competition_group, vci:match, vci:tournament, vbi:match, vbi:tournament

match_id

Required

The ID for the sport event to get summary

e.g. 48665175

Summary information about a sport event

get

Summary information about a sport event, specific to type of event. Prematch, Live or Post-match. Prematch info is very brief. Postmatch the results are there. XML schema

Authorizations
Path parameters
languagestringRequired

Language code for translation.

idintegerRequired

Displays the results for the specified event.

urn_typestring · enumRequired

Type of event.

Possible values:
Responses
200

successful operation

application/xml
get
GET /v1/sports/{language}/sport_events/{urn_type}:{id}/summary.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"?>
<match_summary xmlns="http://schemas.sportradar.com/sportsapi/v1/unified" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2024-03-25T19:01:30+00:00" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/v1/unified http://schemas.sportradar.com/ufsportsapi/v1/endpoints/unified/ufsportsapi.xsd">
  <sport_event id="sr:match:48665175" scheduled="2024-04-20T16:15:00+00:00" start_time_tbd="false">
    <tournament_round type="cup" name="Semifinal" betradar_id="16" betradar_name="FA Cup" phase="playoffs"/>
    <season start_date="2023-11-03" end_date="2024-05-25" year="23/24" tournament_id="sr:tournament:19" id="sr:season:106225" name="FA Cup 23/24"/>
    <tournament id="sr:tournament:19" name="FA Cup">
      <sport id="sr:sport:1" name="Soccer"/>
      <category id="sr:category:1" name="England" country_code="ENG"/>
    </tournament>
    <competitors>
      <competitor qualifier="home" id="sr:competitor:17" name="Manchester City" abbreviation="MCI" short_name="Man City" country="England" country_code="ENG" gender="male">
        <reference_ids>
          <reference_id name="betradar" value="14758"/>
        </reference_ids>
      </competitor>
      <competitor qualifier="away" id="sr:competitor:38" name="Chelsea FC" abbreviation="CHE" short_name="Chelsea" country="England" country_code="ENG" gender="male">
        <reference_ids>
          <reference_id name="betradar" value="14748"/>
        </reference_ids>
      </competitor>
    </competitors>
    <venue id="sr:venue:606" name="Etihad Stadium" capacity="53400" city_name="Manchester" country_name="England" country_code="ENG" map_coordinates="53.484592,-2.202695"/>
  </sport_event>
  <sport_event_conditions>
    <venue id="sr:venue:606" name="Etihad Stadium" capacity="53400" city_name="Manchester" country_name="England" country_code="ENG" map_coordinates="53.484592,-2.202695"/>
  </sport_event_conditions>
  <sport_event_status status_code="0" match_status_code="0" status="not_started"/>
  <coverage_info level="silver" live_coverage="true" covered_from="tv">
    <coverage includes="basic_score"/>
    <coverage includes="key_events"/>
  </coverage_info>
</match_summary>

Last updated

Was this helpful?