Documentation

Explore our comprehensive healthcare APIs. Build powerful integrations with IASORA AI agents and FHIR-compliant backend services.

API Information

Version
1.0.0
Base URL
https://api.iasora.health/v1
Authentication
Bearer Token

Getting Started

Authentication

All API requests require authentication using Bearer tokens. Include your API key in the Authorization header:

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.iasora.health/v1/health

Rate Limits

  • Standard tier: 100 requests per minute
  • Professional tier: 500 requests per minute
  • Enterprise tier: Custom limits

Response Format

All endpoints return JSON responses with appropriate HTTP status codes.

IASORA Scribe™

IASORA Voice™

IASORA LEX™

IASORA Metrics™

Quick Start Examples

Python

import requests

# Initialize client
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

# Make a request
response = requests.get(
    "https://api.iasora.health/v1/health",
    headers=headers
)

print(response.json())

JavaScript

// Initialize client
const headers = {
  'Authorization': 'Bearer YOUR_API_KEY',
  'Content-Type': 'application/json'
};

// Make a request
fetch('https://api.iasora.health/v1/health', { headers })
  .then(response => response.json())
  .then(data => console.log(data));