# Languages for Hosted Pages

**URL:** https://community.rapyd.net/t/languages-for-hosted-pages/1318
**Category:** 🙋🏽‍♀️🙋🏽‍♂️ Ask Questions
**Tags:** disburse-api, collect-api
**Created:** [December 1, 2021, 6:31pm UTC](https://community.rapyd.net/t/languages-for-hosted-pages/1318 "2021-12-01T18:31:05Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Community\_Team](https://avatars.discourse-cdn.com/v4/letter/c/46a35a/32.png) [@Community\_Team](https://community.rapyd.net/u/Community_Team)
#### Post date: [December 1, 2021, 6:31pm UTC](https://community.rapyd.net/t/languages-for-hosted-pages/1318/1 "2021-12-01T18:31:05Z")

</div>

You can now get all the [different languages offered for Hosted Pages](https://docs.rapyd.net/build-with-rapyd/reference/hosted-page-language-support) by API.

Retrieve the most updated supported languages with a GET request to  
`https://sandboxapi.rapyd.net/v1/hosted/config/supported-languages`

Production  
GET `https://api.rapyd.net/v1/hosted/config/supported-languages`

Postman  
GET `{{base_uri}}/hosted/config/supported-languages`

Rapyd Hosted Pages can include:

- [Hosted Checkout Page](https://docs.rapyd.net/build-with-rapyd/docs/hosted-checkout-page-integration-steps)
- [Beneficiary Tokenization Page](https://docs.rapyd.net/build-with-rapyd/reference/beneficiary-tokenization-page-object)
- [Rapyd Verify Hosted Page](https://docs.rapyd.net/build-with-rapyd/reference/rapyd-verify-overview-beta#rapyd-verify-hosted-page-object)
- [Hosted IDV Page](https://docs.rapyd.net/build-with-rapyd/reference/hosted-page-identity-verification-object)
- [Card Token Hosted Page](https://docs.rapyd.net/build-with-rapyd/reference/tokens#create-card-token-hosted-page)

---

<div class="post-metadata">

### Author: ![Community\_Team](https://avatars.discourse-cdn.com/v4/letter/c/46a35a/32.png) [@Community\_Team](https://community.rapyd.net/u/Community_Team)
#### Post date: [December 1, 2021, 6:32pm UTC](https://community.rapyd.net/t/languages-for-hosted-pages/1318/2 "2021-12-01T18:32:57Z")

</div>

#### Response

```auto
"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"
            }
        ]
    }

```
