Get a list of all conversion detail in ad attribution
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-2Header 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.
modelstringRequired
Conversion model name.
goalstringRequired
Conversion goal name.
pageintegerRequired
The min is 1.
page_sizeintegerRequired
The range is 1 to 100.
Responses
200Success
application/json
post
/{version}/api/get/ad-analysis/all-conversion-detail-listPOST /{version}/api/get/ad-analysis/all-conversion-detail-list HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 101
{
  "start_date": "string",
  "end_date": "string",
  "model": "first",
  "goal": "purchase",
  "page": 1,
  "page_size": 20
}200Success
{
  "code": 1,
  "message": "Service succeed",
  "data": {
    "total": 1,
    "page_size": 20,
    "records": [
      {
        "campaign_id": "23855481405970436",
        "campaign_name": "Accurate delivery-General budget",
        "set_id": "23855481406410436",
        "set_name": "Accurate delivery-S",
        "ad_id": "23855481406720436",
        "ad_name": "Accurate delivery-Ad",
        "customer": "Cherruvue Elese",
        "new_customer": "Yes",
        "conversion_credit": 0.5,
        "order": "X1508-A",
        "attributed_value": 37.63,
        "conversion_date": "2025-10-21 04:18:59"
      }
    ]
  }
}Last updated
Was this helpful?