Get a payment page funnel (views → checkout opened → pay submitted → paid)
The paid stage's count/GMV are cross-checked against payment_checkouts — the number merchants should trust for money; earlier stages come from the payment_page_events funnel stream.
X-Api-Key<token>
Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.
In: header
Path Parameters
pageId*string
PaymentPage id
Query Parameters
range?string
Time range for the summary/trend
Default
"last30days"Value in
- "last7days"
- "last30days"
- "last3months"
- "ytd"
- "lastyear"
- "custom"
startDate?string
Start date for custom range (ISO date string)
endDate?string
End date for custom range (ISO date string)
Response Body
application/json
curl -X GET "https://example.com/analytics/payment-pages/string/funnel"{ "pageId": "string", "pageName": "string", "stages": [ { "stage": "views", "count": 0, "gmv": 0, "conversionFromPrevious": 0 } ], "reconciledPaidCount": 0, "reconciledPaidGmv": 0, "currency": "ILS", "periodStart": "string", "periodEnd": "string"}
