List market products
GET/openapi/2026-07/markets/:id/products
List the products of a market, this returns each product's on-sale status in this market and its price in the market's currency.
Request
Path Parameters
Market ID
Query Parameters
Filter by exclusion status: true returns only excluded products, false returns only included products, omit to return all
Search keyword matched against product title
Filter products belonging to a specific collection
Field to sort by
Sort direction (e.g., asc or desc)
Cursor for pagination
A limit on the number of objects to return. Range: 1-100 (default is 10)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
Total number of products
Number of included (selling) products
Number of excluded products
Market currency (ISO 4217)
symbol object
Market 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)
products object[]
Products
Product ID
Product title
Minimum price as a string, priced in the market currency
Maximum price as a string, priced in the market currency
image object
Product image
Image source URL
Alt text
Image width in pixels
Image height in pixels
Image path
Whether this product is excluded from the market
Number of variants that have a fixed price set in this market
Total number of variants of the product
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"total_count": 0,
"included_count": 0,
"excluded_count": 0,
"currency": "string",
"symbol": {
"val": "string",
"left": "string",
"right": "string",
"cn_name": "string",
"title": "string",
"code": "string"
},
"products": [
{
"id": "string",
"title": "string",
"price_min": "string",
"price_max": "string",
"image": {
"src": "string",
"alt": "string",
"width": 0,
"height": 0,
"path": "string"
},
"is_excluded": true,
"total_fixed_price": 0,
"total_variants": 0
}
],
"cursor": "string",
"has_more": true
}
}