Skip to content

Doctors API Overview

The Doctors API provides endpoints to manage doctor information, schedules, and availability.

Available Endpoints

API Reference

GET Endpoints

  • List Doctors - GET /apis/v1/doctors
  • Retrieve paginated list of doctors
  • Supports filtering by clinic, specialty, and availability

Response Format

All doctor API responses follow the standard format:

Success Response

{
  "code": 2000,
  "data": { ... },
  "message": "Success"
}

Error Response

{
  "code": 4001,
  "message": "Error description"
}