Venddor supports multiple languages for your store's interface and content. This section explains how to manage installed languages through the REST API.
https://your-store-url.com/api
Returns a list of all languages installed in your store.
[
{
"lang_id": "1",
"lang_code": "en",
"name": "English",
"status": "A",
"country_code": "US",
"direction": "ltr"
},
{
"lang_id": "2",
"lang_code": "es",
"name": "Spanish",
"status": "A",
"country_code": "ES",
"direction": "ltr"
},
{
"lang_id": "3",
"lang_code": "ar",
"name": "Arabic",
"status": "A",
"country_code": "SA",
"direction": "rtl"
}
]
Returns details for a specific language.
| Parameter | Type | Description |
|---|---|---|
| lang_id* | integer | The unique identifier of the language |
{
"lang_id": "2",
"lang_code": "es",
"name": "Spanish",
"status": "A",
"country_code": "ES",
"direction": "ltr"
}