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

# ICE & TURN

> Request short-lived TURN credentials for browser media.

Request tenant-bound ICE credentials with:

```bash theme={null}
curl -sS -X POST "$LEAMOUT_API_URL/v1/realtime/ice-credentials" \
  -H "Authorization: Bearer $LEAMOUT_TOKEN"
```

The response contains `ice_servers` and an `expires_at` timestamp. Each ICE server can contain URLs, a username, and a credential suitable for a browser `RTCIceServer` entry.

TURN credentials are intentionally short-lived. The realtime endpoint is organization-authenticated and protected by the shared rate-limiting layer.

Use the returned ICE servers directly in the browser client. Leamout handles the server-side media path behind the public WebRTC and SIP interfaces.
