Search products by keyword (products only, no categories). Requires login.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/x-www-form-urlencodedRequired
Request Code Samples
curl --location --request POST '/api.php?API=biz/product/product/items' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'CLIENT_API=' \
--data-urlencode 'openid=' \
--data-urlencode 'data={"title":"discount","page":1}'
Responses
application/json
Successful response (same format as List Products)
{
"data": {
"items": [
{
"product_id": "string",
"cate_id": "string",
"cat_id": "string",
"title": "string",
"photo": "string",
"price": "string",
"package_price": "string",
"sales": "string",
"sale_sku": "string",
"is_onsale": "string",
"unit": "string",
"is_hot": "string",
"is_must": "string",
"is_tuijian": "string",
"status_label": "string"
}
]
},
"error": "0",
"message": "success"
}
Modified at 2026-04-14 03:43:47