Get market
GET/openapi/2026-01/markets/:id
Retrieve full detail of a single market, including domain, pricing, tax, language and status.
Request
Path Parameters
Market ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
market object
Market detail
Market ID
Market name
Whether this is the primary market
Whether this is the default market
Market status: active or paused
Base currency (ISO 4217)
symbol object
Currency symbol detail
Symbol value (e.g., £)
Symbol placed to the left of the amount
Symbol placed to the right of the amount
Chinese name of the currency
Currency title
Currency code (ISO 4217)
Domain mode: primary or sub_path
Domain value (primary domain or sub-path suffix)
Whether a custom exchange rate is enabled. Read-only; cannot be modified via the price update endpoint
Custom exchange rate value. Read-only
Price adjustment percentage. Range -99 to 999
Whether local-currency display is enabled
Whether product prices already include tax
Default language code (IETF) of this market
Covered countries (ISO 3166-1 alpha-2)
languages object[]
Languages configured on this market
IETF language code (e.g., zh-CN)
Language display name
Whether the language is enabled
Storefront URL of the language under this market
Whether this language is the market's default language
Whether languages of this market are manageable
Storefront URL of this market
Creation time, formatted as ISO-8601
Last update time, formatted as ISO-8601
Actual exchange rate
exchange_rate object
Exchange rate detail
Source currency code (ISO 4217)
Target currency code (ISO 4217)
Exchange rate value
Last update time of the rate, formatted as ISO-8601
back_exchange_rate object
Reverse exchange rate detail
Source currency code (ISO 4217)
Target currency code (ISO 4217)
Exchange rate value
Last update time of the rate, formatted as ISO-8601
setting object
Market storefront settings
Whether market redirect is enabled
Whether price rounding is enabled
Whether the geolocation app is installed
Whether the language selector is enabled
Whether delivery countries are limited for this market
{
"code": "string",
"message": "string",
"data": {
"market": {
"id": "string",
"market_name": "string",
"is_primary": true,
"is_default": true,
"market_status": "string",
"currency": "string",
"symbol": {
"val": "string",
"left": "string",
"right": "string",
"cn_name": "string",
"title": "string",
"code": "string"
},
"domain_type": "string",
"domain_value": "string",
"custom_rate_enabled": true,
"custom_exchange_rate": 0,
"price_adjust": 0,
"local_currency_enabled": true,
"product_tax_included": true,
"default_language": "string",
"countries": [
"string"
],
"languages": [
{
"code": "string",
"name": "string",
"is_enabled": true,
"url": "string",
"is_default": true
}
],
"language_manageable": true,
"url": "string",
"created_at": "string",
"updated_at": "string",
"actual_rate": 0,
"exchange_rate": {
"currency": "string",
"to_currency": "string",
"rate": 0,
"last_updated_at": "string"
},
"back_exchange_rate": {
"currency": "string",
"to_currency": "string",
"rate": 0,
"last_updated_at": "string"
},
"setting": {
"redirect_enabled": true,
"price_round_enabled": true,
"geolocation_app_installed": true,
"language_selector_enabled": true
},
"delivery_country_limited": true
}
}
}