RevKeen Docs
Api reference

A/R Aging Report

Returns Accounts Receivable aging buckets with invoice counts and amounts


Related endpoints

  • GET /analytics/revenue/mrr-summary — MRR Summary
  • GET /analytics/revenue/time-series — Revenue Time Series
  • 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
  • GET /analytics/checkout/abandonment/summary — Abandonment Alert Summary
GET
/analytics/invoices/ar-aging
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

asOfDate?string

Calculate aging as of this date (ISO 8601)

Formatdate-time

Response Body

application/json

curl "https://api.revkeen.com/v2/analytics/invoices/ar-aging" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "asOfDate": "string",
  "buckets": [
    {
      "label": "string",
      "count": 0,
      "totalMinor": 0
    }
  ],
  "totalOutstanding": 0,
  "totalInvoices": 0
}