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

# List languages

> Lists languages available to your organization.



## OpenAPI

````yaml get /organization/languages
openapi: 3.0.1
info:
  title: BeyondWords REST API
  description: |-
    This is the documentation for the BeyondWords REST API.
              You can use this API to use BeyondWords programmatically.
              You can get your API Key and Project ID for each project in the Project settings tab in the BeyondWords
              <a href="https://dash.beyondwords.io/dashboard">dashboard</a>.
  version: 1.0.0
servers:
  - url: https://api.beyondwords.io/v1
security: []
paths:
  /organization/languages:
    get:
      tags:
        - Languages
      summary: List languages
      description: Lists languages available to your organization.
      operationId: organization/languages#index
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                example:
                  $ref: '#/components/examples/languagesExample'
              schema:
                $ref: '#/components/schemas/languagesModel'
        '401':
          description: Invalid authentication token
          content:
            application/json:
              examples:
                example:
                  $ref: '#/components/examples/unauthorizedErrorExample'
              schema:
                $ref: '#/components/schemas/errorModel'
      security:
        - apiKey: []
components:
  examples:
    languagesExample:
      summary: Sample list of languages
      value:
        - id: 1
          name: English (USA)
          code: en_US
          accent: American
          default_voices:
            title:
              id: 1
              name: John
              speaking_rate: 100
            body:
              id: 1
              name: John
              speaking_rate: 50
            summary:
              id: 1
              name: John
              speaking_rate: 100
          created: 2022-01-02 23:59:59 UTC
    unauthorizedErrorExample:
      summary: Unauthorized error
      value:
        code: 401
        message: Unauthorized
  schemas:
    languagesModel:
      type: array
      items:
        $ref: '#/components/schemas/languageModel'
    errorModel:
      type: object
      properties:
        code:
          type: integer
          description: Error code
        message:
          type: string
          description: Error message
        errors:
          type: array
          nullable: true
          items:
            type: object
            properties:
              location:
                type: string
              message:
                type: string
    languageModel:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier for the object
        name:
          type: string
          description: The language name
        code:
          type: string
          description: The language and location code
        accent:
          type: string
          description: The language accent
        default_voices:
          type: object
          properties:
            title:
              type: object
              nullable: true
              properties:
                id:
                  type: integer
                  description: The default title voice id
                name:
                  type: string
                  description: The default title voice name
                speaking_rate:
                  type: integer
                  description: The speaking rate of the default title voice
                multilingual_mode:
                  type: boolean
                expressiveness:
                  type: number
                  nullable: true
                use_speaker_boost:
                  type: boolean
                  nullable: true
                similarity_boost:
                  type: number
                  nullable: true
                style:
                  type: number
                  nullable: true
            body:
              type: object
              nullable: true
              properties:
                id:
                  type: integer
                  description: The default body voice id
                name:
                  type: string
                  description: The default body voice name
                speaking_rate:
                  type: integer
                  description: The speaking rate of the default body voice
                multilingual_mode:
                  type: boolean
                expressiveness:
                  type: number
                  nullable: true
                use_speaker_boost:
                  type: boolean
                  nullable: true
                similarity_boost:
                  type: number
                  nullable: true
                style:
                  type: number
                  nullable: true
            summary:
              type: object
              nullable: true
              properties:
                id:
                  type: integer
                  description: The default summary voice id
                name:
                  type: string
                  description: The default summary voice name
                speaking_rate:
                  type: integer
                  description: The speaking rate of the default summary voice
                multilingual_mode:
                  type: boolean
                expressiveness:
                  type: number
                  nullable: true
                use_speaker_boost:
                  type: boolean
                  nullable: true
                similarity_boost:
                  type: number
                  nullable: true
                style:
                  type: number
                  nullable: true
        created:
          type: string
          format: date-time
          description: Time at which the object was created (ISO 8601)
        updated:
          type: string
          format: date-time
          description: Time at which the object was updated (ISO 8601)
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````