Getting started
From zero to your first API call in a few minutes.
- 1
Create your account
Sign up with your email and a company/subscriber name, then confirm your address from the verification email. Your workspace (a dedicated tenant) is provisioned automatically the moment you verify. One manual step remains after that today: an admin reviews and approves new accounts, usually within 24 hours, before you can actually log in.
- 2
Get your API key
When your workspace is created, you get a one-time admin API key — store it somewhere safe, it's shown only once and can't be retrieved again later. It goes in every API request as an
x-api-keyheader. You can mint additional keys (e.g. a read-only key for a downstream app) yourself from the dashboard, no need to contact anyone. - 3
Build your first rule
Use the visual, drag-and-drop rule builder in your dashboard — no code required — or submit a rule definition directly via the API (
POST /tenant/rules). Either way it starts life as a draft: saving it doesn't make it live yet. - 4
Activate it
Drafts do nothing until activated. Activation validates the entire resulting active set together — it either fully succeeds, or nothing changes. You can activate everything pending, or just the specific rules you select.
- 5
Call the API
Evaluate eligibility or rate a quote in real time against your active rules, and get back a full trace explaining exactly how the result was reached — see the developer reference for exact request/response shapes.