---
title: "SDK Endpoints"
slug: "sdk-endpoints"
updated: 2024-02-29T22:34:00Z
published: 2024-02-29T22:34:00Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.tritondigital.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK Endpoints

We highly recommend you use the**sdk.listenlive.co**endpoint by default when embedding the JavaScript SDK in your player web page. This endpoint is hosted on Amazon Cloudfront CDN.

**https://sdk.listenlive.co/web/2.9/td-sdk.min.js**

However, for customers in Europe and Asia, using the**playerServicesRegion**setting when initializing the Player SDK might provide better loading performance:

```javascript
//Player configuration: list of modules
 
var tdPlayerConfig = {
   coreModules: [{
       id: 'MediaPlayer',
       playerId: 'td_container'
   }],
   playerReady: onPlayerReady,
   configurationError: onConfigurationError,
   moduleError: onModuleError,
   adBlockerDetected: onAdBlockerDetected,
   playerServicesRegion: "eu" //"eu" for Europe, "ap" for Asia, blank defaults to North America
};
```
