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

# Get chatbot translations

> Retrieve the full localization state for a chatbot, including the default language, supported languages, auto-translation flag, the static `availableKeys` catalogue listing every translation key the system recognises, and the merged translation fields (defaults + custom overrides) for every active language.



## OpenAPI

````yaml get /api/v2/chatbots/{chatbotId}/translations
openapi: 3.0.1
info:
  title: LiveChatAI API v2
  description: >-
    LiveChatAI API v2 - Build powerful AI-powered customer support experiences.
    This API follows REST principles with predictable, resource-oriented URLs,
    JSON responses, and standard HTTP methods.
  version: 2.0.0
servers:
  - url: https://app.livechatai.com
    description: Production server
security:
  - bearerAuth: []
paths:
  /api/v2/chatbots/{chatbotId}/translations:
    get:
      tags:
        - Translations
      summary: Get chatbot translations
      description: >-
        Retrieve the full localization state for a chatbot, including the
        default language, supported languages, auto-translation flag, the static
        `availableKeys` catalogue listing every translation key the system
        recognises, and the merged translation fields (defaults + custom
        overrides) for every active language.
      parameters:
        - in: path
          name: chatbotId
          schema:
            type: string
            example: clx1234567890abcdef
          required: true
          description: Unique identifier of the chatbot
      responses:
        '200':
          description: Successfully retrieved chatbot localization state
        '401':
          description: Unauthorized access
        '404':
          description: Chatbot not found
        '500':
          description: Internal server error occurred
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````