Three Demo Flows for Denial-Risk Triage
The fastest way to evaluate Sentinel Signal is to start with one narrow wedge: denial-risk triage.
Use the same API surface for prior authorization and reimbursement later, but do not start there. Start with denial review queues, exception routing, and "should a human touch this claim before submission?" decisions.
Flow 1: Instant Trial Key -> First Denial Score
Use this when you want to validate the API directly.
- Mint a trial key with
POST https://token.sentinelsignal.io/v1/keys/trial - Call
POST https://api.sentinelsignal.io/v1/scorewithworkflow=healthcare.denial - Inspect
risk_level,confidence,details.denial.distribution_profile, anddetails.denial.routing_source - Check
GET /v1/limitsandGET /v1/usageto confirm the key is being tracked cleanly
This is the shortest path from "I saw the product" to "I have a working denial-risk response in my own tooling."
Flow 2: Hosted MCP -> Denial Review in an Agent
Use this when you want an agent runtime to evaluate denials without writing client code first.
- Connect the hosted endpoint
https://mcp.sentinelsignal.io/mcp - Use Smithery (
@sentinelsignal/scoring) or any MCP client that supports Streamable HTTP - Call
score_workflowwith the same denial payload you would send to/v1/score - Route on the returned risk/confidence fields inside the agent
This is the right demo when the buyer is already experimenting with Claude, Cursor, Windsurf, or a hosted MCP gateway.
Flow 3: Same-Key Upgrade -> Keep Running
Use this when the trial proves useful and you want zero migration friction.
- Keep the existing trial key
- Start Stripe Checkout with
POST https://token.sentinelsignal.io/v1/billing/checkout-session - Complete checkout for
growthorpro - Continue using the same key on
POST /v1/score,GET /v1/limits, andGET /v1/usage
There is no "create a new paid key and rewire every client" step in the MVP. The same key upgrades in place.
What To Show In Every Demo
- The denial score itself
- The confidence value
- The top explanation factors
- The routing metadata in
details.denial - The live usage envelope from
GET /v1/limitsorGET /v1/usage
Why This Wedge First
Denial-risk triage is the easiest story to explain:
- fewer preventable denials
- fewer manual touches on low-risk claims
- cleaner escalation path for high-risk claims
- direct link between score output and operational action
That makes it a better first entry point than "general workflow scoring."