Retrieve the category information for each page according to the page number.
Request Code Samples
curl --location --request GET '/api/open/category/list?pageNum=1&rank=10&parentid=0' \
--header 'version: {{shop_openapi_version}}' \
--header 'token: {{shop_openapi_token}}'
Responses
application/json {
"status": "0",
"message": "Operation successful.",
"data": {
"total": 1000,
"pageNum": 1,
"pageSize": 100,
"categoryList": [
{
"id": 1042212,
"parentid": 122098001,
"rank": 10,
"ename": "Bicycle lights"
}
]
}
}
Modified atΒ 2025-12-12 00:10:40