Installation
This guide helps you install the required tools, clone the official SDK project, and open it in Visual Studio Code (VS Code) for development.
Prerequisites
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 --version
Code Editor
Visual Studio Code is recommended, but you can use any editor you prefer.
Download the SDK Release

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.
Explore the SDK

In VS Code, open the Solution Explorer.
Expand the
Sportradar.OddsFeed.SDKfolder to browse the project structure and codebase.Find and open the
App.configfile. 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.
Environment Values
GlobalIntegration – for testing and development
GlobalProduction – for live production environments
Last updated
Was this helpful?