Quickstart
Integration flow
1. Get your API Key
- Create the organization in the admin panel.
- Generate a key under
Admin > API Keys. - Store the key in a secure vault.
2. Send your first request
curl -X POST https://api.saubit.com.br/api/v1/interactions/check \
-H "X-API-Key: sm_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"medications": ["Warfarin", "Omeprazole"],
"language": "en"
}'
3. Check usage and invoices
- Technical usage:
GET /api/v1/usage/summary - Billing:
GET /api/v1/billing/summary - Invoices:
GET /api/v1/billing/invoices
Next steps
- System flows — flowcharts of the whole integration.
- Authentication and Best practices (incl.
Idempotency-Key). - Formats: FHIR R4 · CDS Hooks · HL7 v2 · Batch.
- Alert governance and Webhooks.
Admin routes (governance config, dashboard, webhook replay) live in the Admin Swagger (
/docs/admin), separate from the client routes above.