Sentinel Signal Systems

Signal Before Action.

Infrastructure-grade scoring for automated decision workflows.

A scoring layer for agents that need to decide what to do next.

Deterministic • Calibrated • Versioned • Explainable

What it is

Sentinel Signal provides a simple scoring primitive you can drop into automated workflows and agents.

Send a payload -> get a stable score, confidence, and explanation back.

No dashboards. No fluff. Just signal.

Quickstart (copy/paste)

Request

curl -s https://api.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"
    }
  }'

Response

{
  "workflow": "healthcare.denial",
  "score": 0.81,
  "risk_level": "high",
  "confidence": 0.92,
  "model_version": "0.3.3",
  "explanation": {
    "top_factors": [
      "High billed amount vs typical band",
      "CPT/payer prior denial pattern",
      "Out-of-policy place-of-service mix"
    ]
  },
  "details": {
    "workflow": "healthcare.denial",
    "denial": {
      "denial_probability": 0.81,
      "operating_point": "high_recall"
    }
  },
  "scored_at": "2026-02-14T12:00:00Z"
}

Workflows (v1)

healthcare.denial

Risk score for claim denial likelihood with calibrated confidence and factor explanations.

Why agents use it

  • Deterministic outputs: identical inputs -> identical outputs (per model version)
  • Versioned responses: every score includes model_version
  • Explainable by default: top factors included for downstream reasoning
  • Built for automation: stable schema, low latency, simple auth

Pricing

Free: 1,000 calls/month

Usage: $0.003 per scoring call (Stripe metered billing)

Enterprise: volume + SLA

Checkout + key lifecycle APIs are available in the console and docs.

Trust & governance

Scores are decision support, not decisions.

No payload retention by default (processed in-memory).

Drift-aware scoring and model governance processes available in docs.