Telemedicine API

Power your virtual care experiences. Schedule encrypted video consultations, manage chat histories, and integrate real-time health monitoring.

Video Infrastructure

WebRTC-based high-definition video sessions with low latency across African networks.

POST /v1/tele/rooms

Secure Chat

End-to-end encrypted messaging for follow-ups and prescription sharing.

GET /v1/tele/chats/{id}

Book a Session (Python Example)

import requests

url = "https://api.pugatrinicare.com/v1/tele/bookings"
payload = {
    "patient_id": "pat_88219",
    "doctor_id": "doc_001",
    "scheduled_at": "2024-11-20T14:30:00Z",
    "type": "video_consult"
}
headers = {
    "Authorization": "Bearer YOUR_SECRET_KEY"
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())