Checkout Funnel Analytics

Get stage-by-stage checkout conversion funnel metrics. Shows sessions, drop-offs, and conversion rates at each step. --- **Related endpoints** - `GET /analytics/revenue/mrr-summary` — MRR Summary - `GET /analytics/revenue/time-series` — Revenue Time Series - `GET /analytics/invoices/ar-aging` — A/R Aging Report - `GET /analytics/collections/dso` — Days Sales Outstanding - `GET /analytics/customers/ltv` — Customer LTV - `GET /analytics/customers/{customerId}` — Customer Analytics - `GET /analytics/payment-links/conversion` — Payment Link Conversion - `GET /analytics/checkout/abandonment/summary` — Abandonment Alert Summary

GET
/analytics/checkout/funnel

Get stage-by-stage checkout conversion funnel metrics. Shows sessions, drop-offs, and conversion rates at each step.


Related endpoints

  • GET /analytics/revenue/mrr-summary — MRR Summary
  • GET /analytics/revenue/time-series — Revenue Time Series
  • GET /analytics/invoices/ar-aging — A/R Aging Report
  • GET /analytics/collections/dso — Days Sales Outstanding
  • GET /analytics/customers/ltv — Customer LTV
  • GET /analytics/customers/{customerId} — Customer Analytics
  • GET /analytics/payment-links/conversion — Payment Link Conversion
  • GET /analytics/checkout/abandonment/summary — Abandonment Alert Summary
x-api-key<token>

Your RevKeen merchant API key. Create and manage keys in Dashboard → Settings → Developer. Use rk_sandbox_* for staging/test and rk_live_* for production. The same key may be sent as Authorization: Bearer <key> if that suits your HTTP client better. A missing, invalid, expired, or revoked key returns 401 with a WWW-Authenticate: Bearer challenge; a valid key without the required scope returns 403.

In: header

Query Parameters

startDate?string

Start date for analytics period (ISO 8601)

Formatdate-time
endDate?string

End date for analytics period (ISO 8601)

Formatdate-time

Response Body

application/json

application/json

application/json

Stuck on an error response? Ask the RevKeen assistant to explain it.
curl "https://api.revkeen.com/v2/analytics/checkout/funnel" \
  -H "x-api-key: $REVKEEN_API_KEY"
{  "start_date": "string",  "end_date": "string",  "total_sessions": 0,  "completed_sessions": 0,  "overall_conversion_rate": 0,  "steps": [    {      "step_number": 0,      "step_name": "string",      "sessions": 0,      "unique_customers": 0,      "unique_anonymous": 0,      "total_events": 0,      "avg_time_on_page_seconds": 0,      "exits": 0,      "drop_off_rate": 0    }  ]}