Your first governed decision in minutes: one call returns a verdict before the action runs, with signed proof you can hand to anyone.
Pick your tool. Same action, same verdict, same proof — or run the sandbox in the right rail first, no key needed.
Create a workspace at decionis.com/create-account — the key is issued on signup. Exploration keys evaluate 50 decisions a month, free.
curl -X POST https://api.decionis.com/v1/protocol/evaluate-decision \
-H "Authorization: Bearer $DECIONIS_API_KEY" \
-H "Idempotency-Key: refund-ord_84f21" \
-H "Content-Type: application/json" \
-d '{
"decision_type": "ISSUE_REFUND",
"amount": 1200,
"mode": "ENFORCEMENT"
}'{
"outcome": "ESCALATE",
"confidence": 1,
"policy_version": "refund-authority-v3",
"objective_profile": "risk_conservative",
"dossier_id": "3f6c…",
"dossier_sha256": "ab12…",
"evaluation_id": "9d41…",
"mode": "ENFORCEMENT",
"idempotent_replay": false
}ESCALATE means a human decides before anything executes. APPROVE executes, REJECT stops, REVIEW queues. Example values shown — your ids and policy version will differ.
curl https://api.decionis.com/v1/public/decision-dossiers/$DOSSIER_ID/verifyNo account needed — anyone holding the link can re-verify the signature against the published JWKS.
Enterprise and partner integrations onboard through sponsor OTP, sample-driven signal mapping, and a one-step deployment bundle.
# 1. Request the sponsor verification code
curl -X POST https://api.decionis.com/v1/public/auth/register/start \
-H "Content-Type: application/json" \
-d '{"owner_email":"risk@example.com","owner_name":"Partner Risk","org_name":"Partner Inc"}'
# 2. Verify the OTP → onboarding grant + org id
curl -X POST https://api.decionis.com/v1/public/auth/register/verify \
-H "Content-Type: application/json" \
-d '{"owner_email":"risk@example.com","otp_code":"123456"}'
# 3. Create a mapping session
curl -X POST https://api.decionis.com/v1/public/pilot/signal-mapping/sessions \
-H "Authorization: Bearer <onboarding_grant>" \
-d '{"org_id":"<org_uuid>"}'
# 4. Upload a representative sample (flat JSONL maps cleanest)
curl -X POST https://api.decionis.com/v1/public/pilot/signal-mapping/sessions/<session_id>/upload \
-H "Authorization: Bearer <onboarding_grant>" \
-H "Content-Type: application/x-ndjson" \
--data-binary @sample_events_flat.jsonl
# 5. Dry-run the mapping
curl -X POST https://api.decionis.com/v1/public/pilot/signal-mapping/sessions/<session_id>/dry-run \
-H "Authorization: Bearer <onboarding_grant>"
# 6. Issue the deployment bundle → org API key, connector id,
# webhook secret + URL, policy version, in one step
curl -X POST https://api.decionis.com/v1/public/pilot/signal-mapping/sessions/<session_id>/deployment-bundle \
-H "Authorization: Bearer <onboarding_grant>" \
-d '{"provider_key":"partner_webhook","workflow_key":"decision_intake","source_label":"primary_stream"}'
# 7. Send live traffic into the issued webhook
curl -X POST https://api.decionis.com/v1/signals/webhooks/<connector_id> \
-H "x-webhook-secret: whsec_xxx" \
-d '{"events":[{"type":"eligibility_assessed","data":{"case_id":"case_123"}}]}'
# Minimum runtime env after bundle issuance:
DECIONIS_API_BASE_URL=https://api.decionis.com/v1
DECIONIS_API_KEY=...
DECIONIS_ORG_ID=...
DECIONIS_CONNECTOR_ID=...
DECIONIS_WEBHOOK_SECRET=...
DECIONIS_WEBHOOK_URL=...
DECIONIS_POLICY_VERSION=...
# Starter assets
curl -O https://decionis.com/examples/sample_events_flat.jsonl
curl -O https://decionis.com/examples/decionis.partner.env.exampleFull route and payload details: signal mapping, webhooks. On Google Cloud, use the Vertex AI extension and its importable spec instead of improvising a second decision runtime.
Each page pairs with a Try-It sample in the right rail.
| You want to | Go to |
|---|---|
| Understand every field on the decision route | /docs/decision-evaluation |
| Write and submit versioned policy | /docs/policy-encoding |
| Watch verdicts on real traffic before enforcing | /docs/shadow-reports |
| Verify, embed, or hand over a Decision Dossier | /docs/decision-dossier |
| Gate agent tool calls in Claude Code, Codex, Copilot | /docs/protocol-mcp |
| Wire inbound events and signed callbacks | /docs/webhooks |
| Authentication, keys, and rate limits | /docs/auth |