---
uuid: ab856c8d-c1c5-41fd-ab88-e051e7289c79
date_created: 2025-10-07T14:13:55.373Z
date_updated: 2026-04-03T17:04:03.807Z
seo_url: get-locales-en
category: Services
tags: 
  - Locales
routes: 
  - GET /v0/locales
---

# Get available locales

As an API consumer, I want to know what are my available locales in order to cover my commercial scope and translate my contents.

## Flow

false

This scenario demonstrates how API consumers can retrieve the list of authorized locale configurations, essential for adapting commercial scope and content translation.

## 1 - List available locales

This route returns the list of locale values available for the current API key.

#### Prerequisites

Have a valid API key. Then reuse one of these locales in calls that expect `accept-language` or a locale segment.

#### Calling CURL

```bash
curl -X GET \
  -H "x-api-key: $API_KEY" \
  "https://api.clubmed.com/v0/locales"
```

#### Example answer

```json
[
  "fr-FR",
  "en-US",
  "es-ES"
]
```

> **info:** This list depends on the current API key configuration. It helps you build subsequent requests with a supported locale.

***

**Response codes**

* `200 OK`: the supported locale list is returned.
* `400 Bad Request`: the request is invalid.
* `403 Forbidden`: the API key is not allowed to call this route.

**Related route**: [GET https://api.clubmed.com//v0/locales](https://api.clubmed.com/doc?search=GET%20%2Fv0%2Flocales)
