Developer Platform
Governed health AI, in a single API call.
Drop Dana into your patient app, your portal, or your own chat surface. OAuth 2.0 client credentials, predictable JSON, and per-call billing.
OAuth 2.0
Standard client credentials flow. No bespoke auth, no SDK lock-in.
JSON In, JSON Out
Send a message, get a governed response with metadata about classification and safety.
Per-call billing
Monthly quotas with overage tracking, visible in your sponsor dashboard.
Example
What an integration looks like.
Two calls: authenticate, then send a message. Dana handles the rest.
# 1. Get an access token POST /auth/token { "grant_type": "client_credentials", "client_id": "your-org-id", "client_secret": "<secret>" }
# 2. Send a patient message POST /app/message Authorization: Bearer <token> { "user_id": "patient-123", "message": "What should I eat for breakfast?", "language": "en" } # Response { "reply": "Great question! A balanced breakfast...", "classification": "education", "safety_status": "passed", "conversation_id": "conv_abc123" }