Skip to main content

Overview

The AlloMia API enables you to integrate our advanced healthcare AI capabilities directly into your applications and workflows. Our RESTful API provides programmatic access to voice agents, knowledge bases, and healthcare organization management features.

Getting Started

Core Resources

Authentication

All API requests require authentication using a tenant-specific API key. Include this key in the Authorization header of your requests using the Bearer token format:
Authorization: Bearer YOUR_API_KEY
API keys are specific to your organization and environment. Contact your administrator or the AlloMia support team to obtain the appropriate API credentials for your integration needs.

Response Format

All API responses are returned in JSON format. Successful requests return a 2xx status code, while errors return an appropriate HTTP status code (4xx for client errors, 5xx for server errors) along with an error message in the response body.
{
  "error": {
    "code": "unauthorized",
    "message": "Invalid API key provided"
  }
}

Rate Limits

To ensure service stability, the AlloMia API implements rate limiting on all endpoints. If you exceed the rate limit, you’ll receive a 429 Too Many Requests response. Implement appropriate backoff strategies in your applications to handle these cases gracefully.