ArogyaX Powers the Platforms You Already Use

Beyond booths and web consoles — ArogyaX can be embedded into external hospital management systems, partner apps, and government portals through a clean REST API and modular SDK.

Four Ways to Connect with ArogyaX

Whether you're embedding ArogyaX into an existing product or building a new deployment, there's a fit.

Web

Web Console Integration

Use ArogyaX as a standalone web application or embed the consultation flow directly within your existing web portal. No additional development required.

  • Hosted on your subdomain or ours
  • Branded to your institution
  • Works on all modern browsers
  • Responsive for tablet use at the doctor's desk
Your Website
ArogyaX iFrame / Redirect
Consultation Session
Mobile

Mobile App Deployment

ArogyaX runs natively on Android and iOS devices. Institutions can use the ArogyaX app directly, or embed consultation functionality into their own mobile application.

  • White-label mobile app available
  • Available on Android (primary); iOS on request
  • Offline session caching for low-connectivity areas
  • Push notifications for appointment and prescription updates
Your App
ArogyaX SDK Module
Doctor Queue
API

REST API Integration

The ArogyaX REST API gives full programmatic control over consultation lifecycle — from patient registration through prescription retrieval. Build exactly the experience your product needs.

  • Token-authenticated, tenant-scoped endpoints
  • Webhooks for real-time session event notifications
  • Pagination and filtering for patient record queries
  • Sandbox environment available for development
POST /v1/consultations
Authorization: Bearer {api_key}
X-Tenant-ID: {org_id}

{
  "patient_id": "pt_a1b2c3",
  "vitals": { "bp": "120/80", "spo2": "98" },
  "chief_complaint": "Persistent cough"
}
// → 201 Created: consultation_id, queue_position
SDK

Embedded SDK / Kiosk Mode

The ArogyaX SDK is designed for embedding the full consultation experience into hardware systems, partner kiosks, or custom-built interfaces — beyond just web and mobile.

  • JavaScript SDK for browser-embedded deployments
  • Native Android library for device integrations
  • Event-based architecture for custom UI orchestration
  • Suitable for hardware OEMs adding health features to existing devices
import ArogyaX from '@arogyax/sdk';

const ax = new ArogyaX({
  tenantId: 'your_org_id',
  mode: 'kiosk',
  otpEnabled: false
});

ax.startConsultation(); // launches the flow

ArogyaX as a Healthcare Backend for Your Product

If you're a health-tech company, hospital software vendor, or enterprise platform — you can use ArogyaX as the consultation infrastructure layer, and build your own experience on top.

🏥

HMS Add-On

Add telemedicine and booth-powered consultation capability to an existing hospital management system without rebuilding your stack.

💊

Pharmacy Consultation Layer

Pharmacy apps can offer over-the-counter doctor advice before medication dispensing, powered by the ArogyaX consultation flow.

🏛️

Government Health Portal

State and central health portals can use ArogyaX as the backend for citizen consultation services — fully configurable for public sector compliance.

📱

Patient-Facing App

Consumer health apps can embed ArogyaX consultation flows via SDK, offering users access to verified doctors without building the workflow themselves.

🔬

Diagnostics Integration

Labs and diagnostics chains can connect ArogyaX so doctors can order tests from within the consultation, with results flowing back into the platform.

🤝

Insurance Platform

Health insurers can integrate ArogyaX to offer policyholders structured teleconsultation as a covered benefit, with usage data for claims processing.

Designed for Developers Who Value Simplicity

The ArogyaX API follows REST conventions, uses JWT authentication, and returns structured JSON. Integration time is typically 1–3 days for a working prototype.

Core Endpoints

# Patient Management
GET /v1/patients
POST /v1/patients
GET /v1/patients/{id}

# Consultations
POST /v1/consultations
GET /v1/consultations/{id}
GET /v1/consultations/{id}/prescription

# Doctor Queue
GET /v1/queue/status
POST /v1/queue/assign

Webhook Events

# Events your system receives
consultation.created
consultation.assigned
consultation.completed
prescription.generated
patient.registered
session.timeout

# Example payload
{
  "event": "consultation.completed",
  "consultation_id": "cns_xyz",
  "doctor_id": "dr_abc",
  "timestamp": "2025-04-12T14:32:00Z"
}
Get API Access

Start Building on ArogyaX

Whether you need a simple web deployment or a deep API integration, we'll help you get connected.