Skip to main content
Docs vCurrentAPI
Version: Current

Quickstart

Integration flow

API 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

Admin routes (governance config, dashboard, webhook replay) live in the Admin Swagger (/docs/admin), separate from the client routes above.