Head To Head Standalone widget displays comprehensive pre-match and live match statistics in a full-featured, always-visible format without requiring button interaction. Optional inline display mode presents statistical data within tabs to use less space. The widget presents detailed statistical analysis including game pulse momentum, head-to-head records, team form, season statistics, and recent matches in a responsive layout that adapts from single-column to two-column display based on available width. Designed for dedicated statistics pages, match detail sections, or sidebar placements where continuous access to match analytics enhances user engagement, the standalone widget provides the same rich data visualization as the button variant but in a persistent, immediately accessible format.

Head to Head Standalone Overlay Layout

Head to Head Standalone Inline Layout (wide)

Head to Head Standalone Inline Layout (narrow)
See the Head To Head Standalone widget demo.
Required identifiers:
headToHead.standaloneEnvironment Requirements
| Browser | Version | Mobile Support |
|---|---|---|
| Chrome | 60+ | ✅ Chrome Mobile 60+ |
| Firefox | 55+ | ✅ Firefox Mobile 55+ |
| Safari | 12+ | ✅ iOS Safari 12+ |
| Edge | 79+ | ✅ Edge Mobile 79+ |
| Internet Explorer | All versions | ❌ Not Supported |
Supported Sports
The standalone widget provides flexible display modes and content customization.
See the Head To Head Standalone demo for live examples.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
matchId | number | Yes | - | Sportradar match identifier. See Getting Identifiers |
layout | string | No | "overaly" | Display mode for statistics content.
|
disableScoreboard | boolean | No |
Head to Head is available with three icons sets by default.
components property is an object with sport IDs as keys and arrays of strings (tab identifiers) as values.
{
default: ["headtohead", "form", "teamstats", "lastmatches"],
1: ["gamepulse", "headtohead", "form",
For every sport you can:
Invalid component IDs are automatically filtered out.
To set same config for all sports, the simplified notation can be used:
See Head to Head Custom Components Order Guide for detailed examples.
Properties do not always transfer from the above table directly into integration code. Properties must be transformed differently for each integration method:
SIR() callcardVariant: "compact"In javascript integration, the properties go into an object which is passed as the 4th argument of the call ti SIR() function. Please see Global SIR API
data-sr- prefixcardVariant → In all examples replace sportradar in the widgetloader URL path with your clientId.
Example if your clientId is client1:
https://widgets.sir.sportradar.com/sportradar/widgetloaderhttps://widgets.sir.sportradar.com/client1/widgetloaderInitialize the widget programmatically using the JavaScript API. The widget renders in the specified container element.
Insert the following HTML code at the target widget location.

Configuration:
{
layout: "overlay" // Default, two-column when width > 580px
}Optimal for wider containers. Displays statistics in two-column layout when sufficient width is available (580px+), automatically switching to single-column on narrower displays.
false |
When true, hides the scoreboard tab. Useful when match score is displayed separately on the page |
showLastMeetings | boolean | No | false | Display last meetings section in head-to-head tab with detailed match history |
showSimpleForm | boolean | No | false | Use simplified team form display instead of detailed match-by-match results. Shows win/draw/loss indicators only |
showGamePulse | boolean | No | true | Include Game Pulse momentum visualization tab. When false, Game Pulse tab is hidden from interface |
gamePulseIconVersion | number | No | 1 | Version of Game Pulse visualization design. Options: 1, 2, 3See Game Pulse Icons for more information. |
gamePulseIconSet | object | No | See Game Pulse Icos | Used to set custom match pulse icons. Value for each icon should contain URL pointing to the desired icon. |
statisticsEnableMatchStats | boolean | No | true | Enable match-specific statistics tabs. When false, hides match-level statistical comparisons |
statisticsEnableSeasonStats | boolean | No | true | Enable season statistics tabs. When false, hides season-level team statistics |
components | object | array | No | See Components identifiers | Configuration object defining which components to display and their order. |
s5ClientAlias | string | No | - | S5 client alias to be used for direct link to additional statistics (on S5 solution). Required for "More Stats" button to function. |
enableShowMore | boolean | No | false | When true, displays the "More Stats" button that links to detailed statistics on the S5 Statistics Centre. |
Configuration:
{
gamePulseIconVersion: 1
}Scoreboard component/tab is always positioned first and can not be re-ordered. Additionally, scoreboard component/tab can not be removed using components property. Use disableScoreboard property instead to remove scoreboard.
components: ['headtohead', 'form', 'teamstats', 'lastmatches']data-sr-card-variantfilters.sport.hidden → Complex objects must be passed as JSON stringsIn HTML integration, the properties go into the parent HTML object as object properties, prefixed with data-sr- as explained above.
This method supports only simple (base) properties and does not support properties that require functions.
In all examples replace sportradar in the widgetloader URL path with your clientId.
Example if your clientId is client1:
https://widgets.sir.sportradar.com/sportradar/widgetloaderhttps://widgets.sir.sportradar.com/client1/widgetloader(function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
)})(window,document,"script","https://widgets.sir.sportradar.com/sportradar/widgetloader","SIR", {
language: 'en'
});
// Use PREMATCH match ID
SIR('addWidget', '#sr-widget', 'headToHead.standalone', {
matchId: 61591316,
layout: 'overlay'
});<div id="sr-widget"></div><div id="sr-widget"
data-sr-widget="headToHead.standalone"
data-sr-match-id="123"
data-sr-layout="overlay">
</div>
<script type="application/javascript"
src="https://widgets.sir.sportradar.com/sportradar/widgetloader"
async>
</script>