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

# Get Languages

> Retrieves a list of available languages for all software providers or a specific software provider.

> `GET` /platform/api/languages

### Request Parameters

| Name                                                                    | Type     | Description                                                 |
| ----------------------------------------------------------------------- | -------- | ----------------------------------------------------------- |
| **<span style={{color: "rgb(var(--primary)"}}>softwareProvider</span>** | `string` | Specify for which softare provider languages are retrieving |

***

### Response Parameters

JSON Array of strings

```json Example theme={null}
[
  "en",
  "fr",
  "de",
  "es"
]
```

<ResponseExample>
  ```http Request theme={null}
  GET /platform/api/languages?softwareProvider=NOVOMATIC
  ```

  ```json Response 200 theme={null}
  [
      "en",
      "fr",
      "de",
      "es"
  ]
  ```
</ResponseExample>
