Skip to main content

Get products list

Description

Retrieves a list of products.

Request URL

Method: POST

https://example.com/api/v1.1/market/products/list

Request parameters

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
from_idstring"2oDantiaiPtY-b7b41276360564d4"NoThe pointer to the next page. It is taken from the previous request, or passed empty for the first one.
limitint3NoProduct list limit

Request example

{
"token": "abcdefghijklmnqrstuvwxyz",
"from_id": "0014a2feb331ace2.20200124134127",
"limit": 3
}

Response example

{
"error": 0,
"error_text": "",
"result": [
{
"name": "Xiaomi 11T",
"external_id": "xiaomi_11T",
"sku": [
{
"name": "Xiaomi 11T 256ГБ",
"external_id": "xiaomi_11t_256gb",
},
{
"name": "Xiaomi 11T 128 ГБ",
"external_id": "xiaomi_11t_128gb",
}
]
},
{
"name": "Apple iPhone 13",
"external_id": "iphone_13",
"sku": [
{
"name": "Apple iPhone 13 256GB",
"external_id": "iphone_13_256gb",
},
{
"name": "Apple iPhone 13 128GB",
"external_id": "iphone_13_128gb",
}
]
},
{
"name": "Wireless headphones Xiaomi Mi True Pro",
"external_id": "xiaomi_mi_true_pro",
}
]
}

Response parameters

ParameterTypeDescription
errorintError code
error_textstringError text
next_from_idstringThe pointer must be passed in the next request to get another piece of data until the output of the result contains 0 lines of history.
resultarrayArray of received data on products and their SKUs