SDKs
Official client libraries for the Relaya API. Install a package to get started quickly with type-safe methods and built-in error handling.
Python
relaya-pythonComing Soon
pip install relayaUsage preview:
from relaya import Relaya
client = Relaya(api_key="rlya_live_abc123")
# List today's appointments
appointments = client.appointments.list(date="2026-07-25")
# Create a patient
patient = client.patients.create(
name="Rahul Verma",
phone="+919812345678"
)Node.js
@relaya/sdkComing Soon
npm install @relaya/sdkUsage preview:
import { Relaya } from "@relaya/sdk";
const client = new Relaya({ apiKey: "rlya_live_abc123" });
// List today's appointments
const appointments = await client.appointments.list({
date: "2026-07-25"
});
// Create a patient
const patient = await client.patients.create({
name: "Rahul Verma",
phone: "+919812345678"
});REST API
No SDK required. The Relaya API is a standard REST API that works with any HTTP client. Use curl, fetch, requests, or any library that supports HTTP and JSON.