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

# Connect to Telnyx

> Point your existing LiveKit CLI and SDKs at the Telnyx platform by swapping the URL and credentials — no code changes required to migrate.

Connecting to the Telnyx LiveKit platform is a URL and credential swap. No code changes.

## Get your credentials

Complete [Quickstart — Step 1](/docs/livekit/quickstart#step-1-configure-the-cli) to set your environment variables and register with the platform. That one-time setup covers everything you need to connect.

<Note>
  Already set up? Just make sure your `LIVEKIT_URL`, `LIVEKIT_API_KEY`, and `LIVEKIT_API_SECRET` are exported in your shell.
</Note>

Verify the connection:

```bash theme={null}
lk room list
```

## Available regions

See [Regions](/docs/livekit/regions) for all available platform and SIP endpoints.

## SDK configuration

Server SDKs (Python, Go, Node.js) just need the URL and credentials:

```python theme={null}
from livekit.api import LiveKitAPI

api = LiveKitAPI(
    url="https://nyc1.livekit-telnyx.com",
    api_key="<your-telnyx-api-key>",
    api_secret="<your-livekit-api-secret>",
)
```

If you're migrating from LiveKit Cloud or self-hosted, change the three environment variables and everything else stays the same.
