List markets
GET/openapi/2026-07/markets
Retrieve all markets of the store with their configuration.
Request
Query Parameters
Whether to return only active markets. Defaults to false
Whether to include per-country currency detail. Defaults to false
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- Array [
- ]
- ]
error code
error message
data object
markets object[]
Markets
Market ID
Market name
Whether this is the primary market
Whether this is the default market
Market status: active or paused
Covered countries (ISO 3166-1 alpha-2)
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)
Whether local-currency display is enabled
countries_detail object[]
Per-country currency detail. Returned only when with_countries_detail is true in the request
Country code (ISO 3166-1 alpha-2)
Currency code for this country
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)
detail object
Country detail
Country name
Country Chinese name
Continent
Flag emoji or identifier
ISO 3166-1 alpha-2 code
ISO 3166-1 alpha-3 code
{
"code": "string",
"message": "string",
"data": {
"markets": [
{
"id": "string",
"name": "string",
"is_primary": true,
"is_default": true,
"market_status": "string",
"countries": [
"string"
],
"currency": "string",
"symbol": {
"val": "string",
"left": "string",
"right": "string",
"cn_name": "string",
"title": "string",
"code": "string"
},
"local_currency_enabled": true,
"countries_detail": [
{
"country_code": "string",
"currency": "string",
"symbol": {
"val": "string",
"left": "string",
"right": "string",
"cn_name": "string",
"title": "string",
"code": "string"
},
"detail": {
"name": "string",
"cn_name": "string",
"continent": "string",
"flag": "string",
"iso_code_2": "string",
"iso_code_3": "string"
}
}
]
}
]
}
}