Get data analysis land page
POST/openapi/2026-07/data-analysis/land-page
Retrieve landing page analytics including page views, unique visitors, add-to-cart rate, checkout funnel, orders, sales, bounce rate, and average session duration, grouped by landing page URL.
Request
- application/json
- Body
- Example
Bodyrequired
pv: Page viewsuv: Unique visitorsadd_cart_uv: Unique visitors who added to cartbegin_checkout_uv: Unique visitors who began checkoutadd_payment_info_uv: Unique visitors who added payment infoorders: Number of orderssales: Total sales amountconversion_rate: Conversion rateescape_rate: Bounce rateavg_elapse: Average time spent on pageland_url_path: Landing page URL pathlast_template_name: Page typelast_referrer_show: Last interactive source- Array node
[ ... ]: its children are combined with OR. - Object node
{ ... }: its entries are combined with AND. - Leaf node: {"operator": "...", "value": ...} attached under a filter key.
The
valuetype to send depends on the operator (operators are case-insensitive): in,not in-> value is an ARRAY, e.g. ["a", "b"]. A scalar will NOT match, so always send an array for these operators.like,not like-> value is a STRING, e.g. "google"=,>,>=,<,<=-> value is a SCALAR (string or number), e.g. 10 value is auto-converted to the target field type. Common keys:land_url_path,last_template_name(page type),last_referrer_show. Unknown keys or unsupported operators are silently ignored, so a filter "not taking effect" usually means a mistyped key/operator. e.g. AND: {"land_url_path": {"operator": "like", "value": "/"}} OR : [{"last_referrer_show": {"operator": "like", "value": "google"}}, {"last_referrer_show": {"operator": "like", "value": "facebook"}}]no_filter_crawler: do not filter; count all traffic (default)official_crawler: exclude known crawlers/bots
Start time, a Unix timestamp in seconds passed as a string, e.g. "1748736000"
End time, a Unix timestamp in seconds passed as a string, e.g. "1781481600". Should be greater than begin_time
Cursor for pagination
Page size for pagination
10Field to sort by. Supported values:
Notice: Values outside the range -12 to 14 might lead to unexpected results in time-based calculations. Time zone offset (in hours) used for analysis. Recommended range: -12 to 14
Sort order: asc (ascending), desc (descending)
Dimensions to retrieve. Supported values:
Advanced filter conditions as a JSON string, expressed as a nested filter tree:
Crawler-filtering policy that controls whether bot/crawler traffic is excluded from the statistics. Values:
{
"begin_time": "string",
"end_time": "string",
"cursor": "string",
"page_size": 10,
"sort_by": "string",
"time_zone": 0,
"sort_direction": "string",
"dimensions": [
"string"
],
"filters": "string",
"filter_crawler_type": "string"
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
Total number of matching records
Latest statistics update time, e.g. "2026-03-26 00:00:00"
Cursor for pagination
Whether there are more records
data object[]
List of landing page analysis data items
Last interaction source, e.g. "Direct"
Landing page URL path, e.g. "/"
Page type display name, e.g. "Home Page"
Page type enum value, e.g. "index"
Page views, formatted string, e.g. "3"
Unique store visitors, formatted string, e.g. "1"
Conversion rate, formatted string, e.g. "0.00%"
Users who added items to cart, formatted string
Users who initiated checkout, formatted string
Users who submitted payment information, formatted string
Number of orders placed, formatted string
Total sales amount, formatted string, e.g. "0.00"
Average visit duration, formatted string, e.g. "22m42s"
Bounce rate, formatted string, e.g. "50.00%"
Page views, numeric value
Unique store visitors, numeric value
Conversion rate, numeric value, e.g. 0
Users who added items to cart, numeric value
Users who initiated checkout, numeric value
Users who submitted payment information, numeric value
Number of orders placed, numeric value
Total sales amount, numeric value
Average visit duration in microseconds, numeric value
Bounce rate, numeric value, e.g. 50 (represents 50%)
{
"code": "string",
"message": "string",
"data": {
"count": 0,
"last_updated_at": "string",
"cursor": "string",
"has_more": true,
"data": [
{
"last_referrer_show": "string",
"land_url_path": "string",
"last_template_name": "string",
"last_template_name_original": "string",
"pv": "string",
"uv": "string",
"conversion_rate": "string",
"add_cart_uv": "string",
"begin_checkout_uv": "string",
"add_payment_info_uv": "string",
"orders": "string",
"sales": "string",
"avg_elapse": "string",
"escape_rate": "string",
"pv_original": 0,
"uv_original": 0,
"conversion_rate_original": 0,
"add_cart_uv_original": 0,
"begin_checkout_uv_original": 0,
"add_payment_info_uv_original": 0,
"orders_original": 0,
"sales_original": 0,
"avg_elapse_original": 0,
"escape_rate_original": 0
}
]
}
}