Quickstart
Your sandbox is ready.
Confirm your email, copy your API key, and run the health check. Then pick your builder and start shipping.
1. Health check
Replace $SAE_API_KEY with the key from your credentials email.
curl -H "Authorization: Bearer $SAE_API_KEY" \ https://sovereignautoengine.com/api/public/v1/health
2. First rating call
This posts a sample BOP quote. Unsupported products return a clean 422 — the core does not invent premiums outside a bound rate plan.
curl -X POST https://sovereignautoengine.com/api/public/v1/quotes \
-H "Authorization: Bearer $SAE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"product": "bop",
"effective_date": "2026-09-03",
"state": "TN",
"class_code": "restaurant",
"limits": {
"building": 250000,
"contents": 50000,
"general_liability": 1000000
}
}'3. Pick a builder
Copy the prompt, paste it into the builder, and let it generate the first version. You can wire in the API once you have a working UI.
Lovable
Build a simple marketing website for a commercial insurance MGA that specializes in Businessowners Policies (BOP). Pages: Home, Products, Appetite, For Agents, Contact. Keep the copy plain and professional. Dark navy background with a warm accent color. No pricing, no calculators, no quoting — brochure only.
Replit
Create a lightweight Node.js/Express landing page for a commercial insurance MGA focused on Businessowners Policies (BOP). Include Home, Products, Appetite, For Agents, and Contact pages. Use plain HTML/CSS on the frontend. No backend logic, no calculators, no quoting — just a brochure site.
Claude / other
I am building an insurance product on the Sovereign Foundry sandbox. Write a curl command that calls the sandbox health endpoint, then a second curl command that posts a BOP quote to /quotes with class_code "restaurant", state "TN", effective_date today, and limits for building, contents, and general liability. Use environment variables for the API key.
Need help?
Reply to your credentials email or reach out at growth@sovereignautoengine.com.