RevKeenDocs

Get billing anchor rules

Get the list of supported billing anchor rules with explanations.


Related endpoints

  • POST /billing/preview — Generate billing schedule preview
  • GET /billing/intervals — Get billing intervals

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
/billing/anchor-rules
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

Response Body

application/json

curl "https://api.revkeen.com/v2/billing/anchor-rules" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": [
    {
      "value": "string",
      "label": "string",
      "description": "string",
      "requiresAnchorDay": true
    }
  ]
}