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

# Get Livekit Regions

> Get available LiveKit Cloud regions for web calls.

This endpoint proxies the LiveKit Cloud API to retrieve available regions.
Use this during web call setup to:
- Display available regions to users
- Configure which LiveKit region to use for WebRTC connections
- Optimize latency by selecting the closest region

**Frontend Usage:**
Instead of calling LiveKit Cloud directly (which requires API keys), use this endpoint:
```
GET /api/v1/voice/livekit/regions
```

**Response:** Returns LiveKit Cloud regions data including region codes, names, and endpoints.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /voice/livekit/regions
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /voice/livekit/regions:
    get:
      tags:
        - voice
      summary: Get Livekit Regions
      description: >-
        Get available LiveKit Cloud regions for web calls.


        This endpoint proxies the LiveKit Cloud API to retrieve available
        regions.

        Use this during web call setup to:

        - Display available regions to users

        - Configure which LiveKit region to use for WebRTC connections

        - Optimize latency by selecting the closest region


        **Frontend Usage:**

        Instead of calling LiveKit Cloud directly (which requires API keys), use
        this endpoint:

        ```

        GET /api/v1/voice/livekit/regions

        ```


        **Response:** Returns LiveKit Cloud regions data including region codes,
        names, and endpoints.
      operationId: get_livekit_regions_voice_livekit_regions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````