---
title: "List Supported Languages"
source_url: https://docs.rapyd.net/en/list-supported-languages.html
lang: en
---

# List Supported Languages

Retrieve a list of the languages supported for hosted pages.

A hosted page can appear in many foreign languages. The `language` (or `merchant_language`) field determines the default language of a hosted page. The field type is string. Use lower-case letters for the value.

- If no value is specified, the language of the user's browser is used.
- If the language of the user's browser cannot be determined, the default language is English.

Relevant to:

- [Display Issued Card Details to Customer](https://docs.rapyd.net/en/display-issued-card-details-to-customer.md "Display Issued Card Details to Customer")
- [Create Subscription by Hosted Page](https://docs.rapyd.net/en/create-subscription-by-hosted-page.md "Create Subscription by Hosted Page")
- [Create Checkout Page](https://docs.rapyd.net/en/create-checkout-page.md "Create Checkout Page")
- [Create Payment Link](https://docs.rapyd.net/en/create-payment-link.md "Create Payment Link")
- [Create Beneficiary Tokenization Page](https://docs.rapyd.net/en/create-beneficiary-tokenization-page.md "Create Beneficiary Tokenization Page")
- [Create Card Token](https://docs.rapyd.net/en/create-card-token.md "Create Card Token")
- [Create Identity Verification Page](https://docs.rapyd.net/en/create-identity-verification-page.md "Create Identity Verification Page")
- [Activate Issued Card Using Hosted Page](https://docs.rapyd.net/en/activate-issued-card-using-hosted-page.md "Activate Issued Card Using Hosted Page")
- [Create Hosted Page for PIN Management](https://docs.rapyd.net/en/create-hosted-page-for-pin-management.md "Create Hosted Page for PIN Management")

### Parameters

### Request Header Parameters

- - access_key
  - Unique access key provided by Rapyd for each authorized user.

    See [Developers](https://docs.rapyd.net/en/developers.md "Developers").
- - Content-Type
  - Indicates that the data appears in JSON format. Set to **application/json**.
- - salt
  - Random string. Recommended length: 8-16 characters.
- - signature
  - Signature calculated for each request individually.

    See [Request Signatures](https://docs.rapyd.net/en/request-signatures.md "Request Signatures").
- - timestamp
  - Timestamp for the request, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time") (seconds).

### Response Parameters

- - languages
  - List of the languages supported for hosted pages.

    - - name
      - Name of the language in English.
    - - iso_alpha2
      - ISO 639-1 code for the language. 2 letters, with suffix where relevant.

- /v1/hosted/config/supported_languages

- List Hosted Page Supported Languages
- ```curl
  curl -X get
  https://sandboxapi.rapyd.net/v1/hosted/config/supported_languages
  -H 'access_key: your-access-key-here'
  -H 'Content-Type: application/json'
  -H 'idempotency: your-idempotency-parameter-here'
  -H 'salt: your-random-string-here'
  -H 'signature: your-calculated-signature-here'
  -H 'timestamp: your-unix-timestamp-here'
  ```
- ```json
  {
      "status": {
          "error_code": "",
          "status": "SUCCESS",
          "message": "",
          "response_code": "",
          "operation_id": "af5929f9-25ec-4467-8438-331689fd1ee9"
      },
      "data": {
          "languages": [
              {
                  "name": "English",
                  "iso_alpha2": "en"
              },
              {
                  "name": "Spanish",
                  "iso_alpha2": "es"
              },
              {
                  "name": "Simplified Chinese",
                  "iso_alpha2": "zh-cn"
              },
              {
                  "name": "Traditional Chinese",
                  "iso_alpha2": "zh-tw"
              },
              {
                  "name": "Korean",
                  "iso_alpha2": "ko"
              },
              {
                  "name": "Portuguese",
                  "iso_alpha2": "pt"
              },
              {
                  "name": "Indonesian",
                  "iso_alpha2": "id"
              },
              {
                  "name": "Thai",
                  "iso_alpha2": "th"
              },
              {
                  "name": "Tagalog",
                  "iso_alpha2": "tl"
              },
              {
                  "name": "German",
                  "iso_alpha2": "de"
              },
              {
                  "name": "Icelandic",
                  "iso_alpha2": "is"
              },
              {
                  "name": "Dutch",
                  "iso_alpha2": "nl"
              },
              {
                  "name": "Vietnamese",
                  "iso_alpha2": "vi"
              },
              {
                  "name": "Malay",
                  "iso_alpha2": "ms"
              },
              {
                  "name": "Japanese",
                  "iso_alpha2": "ja"
              },
              {
                  "name": "Hindi",
                  "iso_alpha2": "hi"
              },
              {
                  "name": "French",
                  "iso_alpha2": "fr"
              },
              {
                  "name": "Russian",
                  "iso_alpha2": "ru"
              },
              {
                  "name": "Ukrainian",
                  "iso_alpha2": "uk"
              },
              {
                  "name": "Greek",
                  "iso_alpha2": "el"
              },
              {
                  "name": "Italian",
                  "iso_alpha2": "it"
              },
              {
                  "name": "Turkish",
                  "iso_alpha2": "tr"
              },
              {
                  "name": "Lithuanian",
                  "iso_alpha2": "lt"
              },
              {
                  "name": "Estonian",
                  "iso_alpha2": "et"
              },
              {
                  "name": "Slovak",
                  "iso_alpha2": "sk"
              },
              {
                  "name": "Slovene",
                  "iso_alpha2": "sl"
              },
              {
                  "name": "Danish",
                  "iso_alpha2": "dk"
              },
              {
                  "name": "Hebrew",
                  "iso_alpha2": "he"
              },
              {
                  "name": "Swedish",
                  "iso_alpha2": "sv"
              },
              {
                  "name": "Czech",
                  "iso_alpha2": "cz"
              },
              {
                  "name": "Latvian",
                  "iso_alpha2": "lv"
              },
              {
                  "name": "Maltese",
                  "iso_alpha2": "mt"
              },
              {
                  "name": "Norwegian",
                  "iso_alpha2": "no"
              }
          ]
      }
  }
  ```
