> ## 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.

This endpoint proxies the LiveKit Cloud API to retrieve available regions.
The frontend cannot access LiveKit Cloud APIs directly due to authentication requirements.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /voice-services/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-services/livekit/regions:
    get:
      tags:
        - voice-services
      summary: Get Livekit Regions
      description: >-
        Get available LiveKit Cloud regions.


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

        The frontend cannot access LiveKit Cloud APIs directly due to
        authentication requirements.
      operationId: get_livekit_regions_voice_services_livekit_regions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````