---
title: "List Doctors"
method: GET
path: "/cdr/v1/doctor/"
tags: ["Doctor and clinic API"]
---

# List Doctors

`GET /cdr/v1/doctor/`

### Overview
Retrieve a list of all doctors registered for your business. Each entry returns the doctor's basic profile, primary specialisation, partner ID, and the clinics they are associated with.

**Endpoint:** `{{HOST}}/cdr/v1/doctor`

**Method:** `GET`

### Response Parameters

| Parameter | Type   | Description                                                |
| --------- | ------ | ---------------------------------------------------------- |
| status    | string | Status of the response (e.g., "success")                   |
| doctors   | array  | List of doctor objects belonging to the business           |

## Headers

- `auth` string, required

## Response `200`

OK - List of doctors

- object
  - `status` string
  - `doctors` object[]
    - `id` string — Doctor's Eka ID
    - `firstname` string
    - `lastname` string
    - `mobile` string
    - `email` string
    - `specialisation` string — Primary specialisation of the doctor
    - `clinics` object[] — Clinics this doctor is associated with
      - `id` string
      - `name` string
    - `partner_id` string — Identifier provided by partner, if any

## Other responses

- `400` — Bad Request - Business could not be resolved from auth token

---

[API](https://skmtc.net/eka/apis/eka-developer-apis.md) · [All operations](https://skmtc.net/eka/apis/eka-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eka/eka-developer-apis/revisions/9ea23456f722/schema)
