Overview

EvaluatorDPT™ turns model outputs into deterministic, governed decisions (YES / NO / TBD) with evidence-first behavior.

Quickstart

PowerShell example (server-side usage; never ship keys in browser JS).

$headers = @{
  "Ocp-Apim-Subscription-Key" = "<YOUR_SUBSCRIPTION_KEY>"
  "Content-Type" = "application/json"
}

$body = @{ texts = @("The World is Beautiful") } | ConvertTo-Json -Depth 6

Invoke-RestMethod -Method POST -Uri "https://api.smsquared.ai/v1/predict" -Headers $headers -Body $body

Auth

  • Use Ocp-Apim-Subscription-Key header.
  • Store keys server-side (Key Vault / secret store). Never ship keys in browser JS.
  • Rotation: rotate regularly and on suspected compromise. Contact support@smsquared.ai.

Errors

  • 401 missing/invalid key
  • 403 forbidden (quota exceeded or plan restriction)
  • 422 invalid request body
  • 429 rate-limited — honor Retry-After

Limits

Plan Spike control Monthly quota Signals / vectors
EvaluatorDPT™ Signals 30 per 60 seconds 500,000 / 30 days Signals model (tier rules apply)

Support & SLA

Note: this page intentionally avoids linking to raw JSON directly. Use API Reference and Builds & Versions for curated views.