Quick Start
1. Get an API Key
Fastest path: mint an instant no-signup trial key with POST /v1/keys/trial (no auth required).
curl -X POST https://sentinelsignal.io/v1/keys/trial
Trial keys can call POST /v1/score, GET /v1/limits, and GET /v1/usage, then upgrade the same key via POST /v1/billing/checkout-session (Bearer trial key) when quota is exhausted.
Start free via dashboard self-serve signup/login, then create a key under /v1/control-plane/workspace/api-keys.
Admin-assisted issuance remains available via POST /v1/apikeys/issue.
Self-serve onboarding is available through dashboard auth endpoints:
POST /v1/control-plane/auth/signup,
POST /v1/control-plane/auth/login, and workspace/key lifecycle under
/v1/control-plane.
One-time setup links remain available for admin-assisted onboarding.
Workspace rename/update uses POST /v1/control-plane/workspace with payload {"workspace_name":"..."}.
For paid plans, start Stripe Checkout from /portal/dashboard (self-serve), use POST /v1/billing/checkout-session (API-key-auth trial upgrade), or use POST /v1/billing/checkout/session (admin flow).
Include the key in all requests:
Authorization: Bearer YOUR_API_KEY
2. Make Your First Request
curl https://sentinelsignal.io/v1/score \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflow": "healthcare.denial",
"payload": {
"external_claim_id": "CLM-SS-0001",
"service_date": "2026-02-14",
"provider_id": 1021,
"payer_id": 44,
"cpt_code": "99213",
"icd10_code": "E119",
"billed_amount": 250.00,
"place_of_service": "11",
"network_status": "in_network"
},
"options": {
"operating_point": "high_recall",
"distribution_profile": "commercial_beta"
}
}'
3. Response
{
"workflow": "healthcare.denial",
"score": 0.81,
"risk_level": "high",
"confidence": 0.92,
"model_version": "0.3.3",
"explanation": {
"top_factors": [...]
},
"details": {
"workflow": "healthcare.denial",
"denial": {
"denial_probability": 0.81,
"operating_point": "high_recall",
"distribution_profile": "commercial_beta",
"routing_source": "explicit"
}
},
"scored_at": "2026-02-14T12:00:00Z"
}
4. Check Usage and Limits
GET /v1/limits
GET /v1/usage
5. Submit Outcome Feedback (Optional)
Use the scoring response x-request-id when posting feedback telemetry:
POST /v1/feedback
{
"request_id": "<x-request-id-from-score-response>",
"endpoint": "denial",
"observed_outcome": "denied",
"expected_outcome": "paid",
"confidence_mismatch": true,
"notes": "Unexpected denial after review"
}
Feedback calls are telemetry-only and are not counted as billable scoring calls.
Authentication
API keys are required.
Header:
Authorization: Bearer <key>
Rate limits apply per key.
Rate Limits
Trial / free:
- 1,000 calls/month
- 1 req/sec with burst 5
- 1 in-flight scoring request per trial key
Paid:
- Usage-based
- Higher concurrency
429 is used for throttling. Trial monthly quota exhaustion returns 402 with an upgrade_url.
Use GET /v1/limits and GET /v1/usage for live usage envelopes.
Free Tier
- 1,000 scoring calls/month
- Trial keys: 1 req/sec + burst 5, 1 in-flight scoring request
- No card required for trial issuance (
POST /v1/keys/trial)
Paid plans use Stripe metered billing. Growth is pay-as-you-go after the included 1,000 monthly calls; Pro adds a monthly commit with lower overage rates. Trial keys can upgrade in place through Stripe Checkout.
Governance
Sentinel Signal models:
- Are calibrated
- Are validated across seeds
- Include drift monitoring
- Are intended for decision support only
Full governance documentation available here:
/portal/governance
Changelog
v1.0.0
Initial workflow-based scoring API
v1.1.0
Added Stripe metering, API key lifecycle, and usage reporting endpoints
v1.2.0
Added structured feedback endpoint with DB-backed request-id validation for multi-instance deployments
v1.3.0
Added regime-aware denial routing with explicit distribution_profile controls and response routing metadata
v1.3.1
Published latest local/Fly 5-seed validation snapshots and dual-machine Fly runtime profile notes
v1.4.0
Added control-plane self-serve API key dashboard flow with one-time setup links and workspace sessions