Attribuly API Docs
  • Introduction
  • Authentication
  • Endpoint
    • Google Looker Studio
  • API Reference
    • Event summary
    • Order: first and last touchpoint
    • Order: total conversion journey
    • The number of visitors who visited the landing page and then completed the event.
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

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

PreviousOrder: total conversion journey

Last updated 10 months ago

Was this helpful?

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.

https://data.api.attribuly.com
  • Endpoint URL
  • Version
  • Rate limits
  • POSTThe number of visitors who visited the landing page and then completed the event.

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"
    }
  ]
}