Reports

Customer sources - landing

Returns customer acquisition landing path performance for the selected period. Responses are capped
at 1500 grouped rows.

GET /api/v1/store/reports/customer-sources-landing

Customer sources - landing

curl --request GET \
  --url 'https://{baseUrl}/api/v1/store/reports/customer-sources-landing' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "meta": {
    "report_link": "https://app.metorik.com/reports/customer-sources/landing"
  },
  "data": [
    {
      "landing": "/products/hoodie",
      "count": 58,
      "returning_customers_count": 12,
      "returning_customers_rate": 20.7,
      "total_order_count": 95,
      "average_order_count": 1.64,
      "total_order_gross": 8924.2,
      "average_customer_ltv": 153.87,
      "total_item_count": 141
    }
  ]
}

No response description.

Authorizations

  • Authorization string required header

    Generate a store API key from the store's Metorik API settings in Metorik, and choose the scopes needed for the endpoints you want to call.

Query Parameters

  • customer_filters string

    Optional JSON-encoded array of customer-level filters applied before calculating the report. See Customer Filters Reference. Cannot be combined with segment. Example: [{"field":"billing_address_country","operator":"eq","value":"US"}]

  • end_date string required

    End date in the store timezone using YYYY-MM-DD format. Example: 2026-02-28

  • segment integer

    Optional saved store-wide customer segment ID. You can find the ID on the customer segments page. Example: 123

  • start_date string required

    Start date in the store timezone using YYYY-MM-DD format. Example: 2026-02-01

Headers

  • Accept string required

    Response format header. Example: application/json

Response

application/json
  • meta object
    + Show Child Attributes
    • report_link string
  • data[] object array
    + Show Child Attributes
    • landing string
    • count integer
    • returning_customers_count integer
    • returning_customers_rate number
    • total_order_count integer
    • average_order_count number
    • total_order_gross number
    • average_customer_ltv number
    • total_item_count integer