Version: 202601
List market languages
GET/openapi/2026-01/markets/:id/languages
List the languages configured on a market, including each language's enabled and default status. Use this before setting the market's default language.
Request
Path Parameters
id stringrequired
Market ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
languages object[]
Languages configured on the market
codestring
IETF language code (e.g., zh-CN)
namestring
Language display name
is_enabledboolean
Whether the language is enabled
urlstring
Storefront URL of the language under this market
is_defaultboolean
Whether this language is the market's default language
{
"code": "string",
"message": "string",
"data": {
"languages": [
{
"code": "string",
"name": "string",
"is_enabled": true,
"url": "string",
"is_default": true
}
]
}
}