Skip to main content

Welcome to the Nevatal API

Nevatal is a multi-tenant SaaS platform for healthcare clinic management. Our API lets you integrate with patient records, appointments, billing, electronic medical records (EMR), and more.

What you can build

Patient Management

Create, update, and query patient records across your clinic.

Appointment Scheduling

Book, reschedule, and cancel appointments programmatically.

Billing & Invoicing

Generate invoices, process payments, and manage credit notes.

Electronic Medical Records

Access clinical notes, prescriptions, lab orders, and medical records.

Base URL

All API requests are made to:
https://api.nevatal.com/api/v1

Authentication

The Nevatal API uses Bearer token authentication. Every request must include a valid API key in the Authorization header.
curl -X GET https://api.nevatal.com/api/v1/patients \
  -H "Authorization: Bearer YOUR_API_KEY"
See the Authentication guide for details on generating and managing API keys.

Multi-Tenancy

Nevatal is multi-tenant. Your API key is scoped to a specific clinic, so all data you read or write is automatically isolated to your clinic context.

Rate Limits

API requests are rate-limited to ensure fair usage:
PlanRequests/minRequests/day
Starter6010,000
Pro12050,000
EnterpriseCustomCustom
When you exceed the limit, the API returns 429 Too Many Requests.

Need help?