Installation
Prerequisites
dotnet --version
Atrribute
Required
Description
Environment Values
Last updated
Was this helpful?
This guide helps you install the required tools, clone the official SDK project, and open it in Visual Studio Code (VS Code) for development.
Before you begin, make sure you have the following installed and set up:
You have a GitHub account to access the official repository and releases.
.NET SDK
Version: .NET 9.0 or higher recommended
Verify installation:
dotnet --versionCode Editor
Visual Studio Code is recommended, but you can use any editor you prefer.

Download OddsFeedSDKCore_3.6.0.tar.gz from the Releases asset page. This was the latest version at the time of writing. Ensure you always download the most recent release.

In VS Code, open the Solution Explorer.
Expand the Sportradar.OddsFeed.SDK folder to browse the project structure and codebase.
Find and open the App.config file. Inside, you’ll see a configuration section like this:
<uofSdkSection
accessToken=""
defaultLanguage="en"
nodeId="1"
environment="GlobalIntegration" />
Configuration Details
accessToken
Yes
Used for authenticating with the broker and the Sports API.
defaultLanguage
Yes
Defines the primary language for SDK data (e.g., en).
nodeId
Yes
Specifies the node identifier for this SDK instance.
environment
Optional
Indicates which Unified Feed environment the SDK connects to. Accepted values come from the SdkEnvironment enum. If not set, the default is Integration.
GlobalIntegration – for testing and development
GlobalProduction – for live production environments
Last updated
Was this helpful?
Was this helpful?