Skip to main content
Logo
Explore APIsContact Us
  • StatsHub
  • Client Configuration Guide
  • Deeplinks
  • Frequently Asked Questions
  1. Resources
  2. StatsHub
  3. Deeplinks

Deeplinks

StatsHub provides a stable deeplink API that allows you to link directly to specific pages (matches, tournaments, teams, players, etc.) using Sportradar entity IDs. The deeplink endpoint resolves the entity and redirects the user to the correct StatsHub page.

#URL Format

text
https://statshub.sportradar.com/{clientAlias}/{language}/entity/{entityId}
PartDescription
{clientAlias}Your client alias (e.g. sportradar)
{language}Language code (e.g. en, de, es)
{entityId}Sportradar entity ID in the format sr:{type}:{id}

#Entity ID Format

Entity IDs follow the standard Sportradar format:

text
sr:{type}:{id}

For example: sr:match:61301091, sr:tournament:17, sr:player:991181.

#Supported Entity Types

#match

Links directly to a match page.

Entity ID: sr:match:{id}

Example:

text
/sportradar/en/entity/sr:match:61301091

#sport

Links to a sport landing page. The behavior depends on whether the sport is a stage-based sport (e.g. motorsport, cycling) or a match-based sport (e.g. football, basketball).

Entity ID: sr:sport:{id}

Query parameters for match-based sports:

ParameterTypeRequiredDescription
datestringNoFilter matches by date
statuslive | allNoFilter by match status

Query parameters for stage-based sports:

ParameterTypeRequiredDescription
categoryIdstringNoCategory ID to display
seasonIdstringNoSeason ID to display
datestringNoFilter by date

Examples:

text
/sportradar/en/entity/sr:sport:1
/sportradar/en/entity/sr:sport:1?status=live
/sportradar/en/entity/sr:sport:40?categoryId=36&seasonId=1285547

#tournament

Links to a tournament page. Corresponds to what was previously known as uniquetournament in S5.

Entity ID: sr:tournament:{id}

Query parameters (default):

ParameterTypeRequiredDescription
seasonIdstringNoSpecific season to display

Query parameters (tennis):

ParameterTypeRequiredDescription
categoryIdstringNoCategory of the tennis tournament
yearstringNoYear of the tournament edition
info

Tennis tournaments are automatically detected and handled differently — the categoryId is resolved automatically if not provided.

Examples:

text
/sportradar/en/entity/sr:tournament:17?seasonId=118689
/sportradar/en/entity/sr:tournament:17?year=2024

#simple_tournament

Links to a legacy tournament page. Corresponds to tournament in S5 (as opposed to uniquetournament).

Entity ID: sr:simple_tournament:{id}

Query parameters:

ParameterTypeRequiredDescription
seasonIdstringNoSpecific season to display
info

For non-tennis sports, simple_tournament automatically resolves to the corresponding unique tournament page.

Example:

text
/sportradar/en/entity/sr:simple_tournament:171107

#category

Links to a category page (group of tournaments, e.g. "England", "Germany", "International").

Entity ID: sr:category:{id}

Example:

text
/sportradar/en/entity/sr:category:1

#competitor

Links to a team or competitor page. Corresponds to uniqueteam in S5.

Entity ID: sr:competitor:{id}

Query parameters:

ParameterTypeRequiredDescription
seasonIdstringNoSpecific season to display

Example:

text
/sportradar/en/entity/sr:competitor:269471?seasonId=1285547

#simple_team

Links to a team page for teams without a corresponding unique team. Corresponds to team in S5.

Entity ID: sr:simple_team:{id}

Query parameters:

ParameterTypeRequiredDescription
seasonIdstringNoSpecific season to display

Example:

text
/sportradar/en/entity/sr:simple_team:4854

#player

Links to a player page. Also covers referees and managers.

Entity ID: sr:player:{id}

Query parameters:

ParameterTypeRequiredDescription
teamIdstringNoTeam context for the player
seasonIdstringNoSeason context
uniqueTournamentIdstringNoTournament context

Example:

text
/sportradar/en/entity/sr:player:1381979
/sportradar/en/entity/sr:player:1381979?teamId=42&seasonId=130281

#season

Links to the tournament page for a specific Sportradar season.

Entity ID: sr:season:{id}

info

The season entity automatically resolves to the correct tournament page by looking up the associated tournament and sport.

Example:

text
/sportradar/en/entity/sr:season:59834

#stage

Links to a stage in stage-type sports (e.g. motorsport, cycling). The behavior depends on whether it is a season stage or an event stage.

Entity ID: sr:stage:{id}

Query parameters (season stage):

ParameterTypeRequiredDescription
categoryIdstringNoCategory ID

Example:

text
/sportradar/en/entity/sr:stage:1284149

#league

Links to a league/table page. Corresponds to table in S5.

Entity ID: sr:league:{id}

info

The league entity automatically resolves to the correct tournament page by looking up the associated tournament, season, and sport.

Example:

text
/sportradar/en/entity/sr:league:7890
Last updated 11 days ago
Is this site helpful?
Statshub, Engagement Tools
Client Configuration GuideFrequently Asked Questions
On this page
  • URL Format
  • Entity ID Format
  • Supported Entity Types
  • match
  • sport
  • tournament
  • simple_tournament
  • category
  • competitor
  • simple_team
  • player
  • season
  • stage
  • league