product

1. Product Request API Basic Information

Request Method

GET

Security Control

circle-info

Add allocated token verification permission. The token is placed in the Authorization field of the header, and permission verification is performed when requesting the interface.

Request Parameters

Parameter Name
Description
Example/Default Value

since_id

Initial product_id, used for pagination, each page queries data with product_id > since_id and sorts in ascending order

0 (first page)

limit

Page size

100

created_at_min

Minimum time for product creation time query

2025-09-01 00:00:00

created_at_max

Maximum time for product creation time query

2025-09-05 23:59:59

updated_at_min

Minimum time for product update time query

2025-09-01 00:00:00

updated_at_max

Maximum time for product update time query

2025-09-05 23:59:59

Request Parameter Example:

{
  "since_id": 0,
  "limit": "100",
  "created_at_min": "2025-09-01 00:00:00",
  "created_at_max": "2025-09-05 23:59:59",
  "updated_at_min": "2025-09-01 00:00:00",
  "updated_at_max": "2025-09-05 23:59:59",
  "status": "ACTIVE"
}

Response Result

Status Code Rule: status_code == 200 indicates that the request is successful and data is returned.

Response Result Structure:

2. Product Basic Structure (product)

3. Product Sample Data