RevKeen Docs
Api reference

List Abandonment Alerts

Get paginated list of abandonment alerts with filtering


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/funnel — Checkout Funnel Analytics

Pagination

Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.

GET
/analytics/checkout/abandonment
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Query Parameters

status?string

Filter by alert status

Value in"open" | "recovered" | "expired" | "dismissed"
severity?string

Filter by severity level

Value in"low" | "medium" | "high" | "critical"
page?integer

Page number

Default1
Range1 <= value
pageSize?integer

Results per page (1-100)

Default20
Range1 <= value <= 100

Response Body

application/json

curl "https://api.revkeen.com/v2/analytics/checkout/abandonment" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "alerts": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "checkoutSessionId": "e4b3bd08-5189-40bd-bc1b-0dd256297c90",
      "customerId": "87d8e330-2878-4742-a86f-dbbb3bf522ac",
      "customerEmail": "string",
      "severity": "string",
      "status": "string",
      "cartValueCents": 0,
      "currency": "string",
      "lastStepReached": "string",
      "enteredEmail": true,
      "enteredPaymentInfo": true,
      "paymentAttempted": true,
      "timeSpentSeconds": 0,
      "abandonedAt": "string",
      "detectedAt": "string",
      "recoveryEmailSent": true,
      "webhookNotified": true
    }
  ],
  "total": 0,
  "page": 0,
  "pageSize": 0
}