Start building

Sandbox is free. First bind in an afternoon.

A sandbox tenant is a full instance of the core — real rate plans, real forms, real ledger entries, no real money. Build your front end against it, then swap the key when you go live.

01

Request a sandbox tenant

Tell us the state and channel you want to build against. We provision a tenant with a rate plan, forms, pay plans and a seeded book so your first call has something real to rate.

02

Mint a key

In your admin, Setup → Developer API. Choose scopes (quote, bind, read) and copy the sae_test_ value — it is shown once and stored only as a hash.

03

Run the sequence

Session, quote, term, application, attestations, signature step, amount due, bind. Nine calls from cold start to an issued policy number.

04

Subscribe a webhook

Point an HTTPS endpoint at your app and verify the HMAC signature. Now your UI reacts to bind, payment and cancellation instead of polling.

Your first two calls

# 1. open a session against the rate plan version effective today
curl -X POST https://sovereignautoengine.com/api/public/v1/sessions \
  -H "Authorization: Bearer sae_test_…" \
  -H "content-type: application/json" -d '{}'

# 2. rate it — premium comes back broken out by coverage
curl -X POST https://sovereignautoengine.com/api/public/v1/quotes \
  -H "Authorization: Bearer sae_test_…" \
  -H "content-type: application/json" \
  -d '{"session_id":"…","answers":{"zip":"37013","drivers":[…],"vehicles":[…]}}'

Request your key

Send us the state, the channel (direct, agency or internal) and what you are building. We provision the tenant and send credentials back.

growth@sovereignautoengine.com