The number of visitors who visited the landing page and then completed the event.

Endpoint URL

Version

  • v2-4-2

Rate limits

  • 10 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.

The number of visitors who visited the landing page and then completed the event.

post
Path parameters
versionstringRequiredExample: v2-4-2
Header parameters
ApiKeystringOptional

api secret key

Body
landing_pagestring[]Required

The landing page in URI format, e.g. /path. Maximum of 20 per call.

event_typestring[]Required

Conversion event after user visits landing page. Maximum of 5 per call. Available event types: product viewed, cart viewed, product added to cart, checkout started, payment info submitted, checkout completed.

Responses
200
Success
application/json
post
POST /{version}/api/visitor/number HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "datetime": {
    "start": "text",
    "end": "text"
  },
  "landing_page": [
    "text"
  ],
  "event_type": [
    "text"
  ]
}
200

Success

{
  "code": 1,
  "message": "Service succeed",
  "data": [
    {
      "checkout started": 1,
      "landing page": "/xxxx"
    }
  ]
}

Last updated

Was this helpful?