Get a list of product analysis cause event data
Endpoint URL
Version
v2-4-2
Rate limits
5 requests per second
Tips
The data returned by the API is generally 10-30 minutes old, and we are sorry that we cannot provide real-time data for querying.
Rate limits: 5 requests per second.
version: v2-4-2.
Path parameters
versionstringRequiredExample:
v2-4-2
Header parameters
ApiKeystringOptionalDefault:
{{ApiKey}}
Example: {{ApiKey}}
Body
start_datestringRequired
The start date range of the event in ISO format, e.g. 1970-01-01, the time zone should be consistent with your store settings.
end_datestringRequired
The end date of the event in ISO format, e.g. 1970-01-01, the time zone should be consistent with your store settings.If you want to see the data for 1970-01-01, please enter 1970-01-02.
product_idstringRequired
The id of product
pagestringRequired
Min is 1
page_sizestringRequired
The range is 1 to 100
Responses
200Success
application/json
post
POST /{version}/api/get/product-analysis/cause-event/list HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 163
{
"start_date": "2025-05-15",
"end_date": "2025-05-21",
"product_id": "7893679407317",
"sorts": [
{
"column": "conversion_value",
"order": "desc"
}
],
"page": "1",
"page_size": "20"
}
200Success
{
"code": 1,
"message": "Service succeed",
"data": {
"total": 1,
"page_size": 1,
"records": [
{
"campaign": "--/direct",
"channel": "direct",
"conversions": 9,
"conversion_value": 143.11,
"spend": 0,
"cpa": 0,
"roas": 0
},
{
"campaign": "Non-order ad cost",
"channel": "N/A",
"conversions": 0,
"conversion_value": 0,
"spend": 1154.94,
"cpa": 0,
"roas": 0
}
]
}
}
PreviousGet a list of summary data for product analysisNextGet a list of summary data of product analysis cause event
Last updated
Was this helpful?