> ## Documentation Index
> Fetch the complete documentation index at: https://developer.eka.care/llms.txt
> Use this file to discover all available pages before exploring further.

# List Clinics

> ### Overview
Retrieve a list of all clinics registered for your business. Each entry includes basic clinic details and the doctors associated with that clinic.

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

**Method:** `GET`

### Response Parameters

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



## OpenAPI

````yaml get /cdr/v1/clinic/
openapi: 3.0.0
info:
  title: Ekacare API & Webhook Documentation
  contact: {}
  version: '1.0'
servers:
  - description: Production
    url: https://api.eka.care
  - description: Stage/Sandbox
    url: https://api.dev.eka.care
security: []
paths:
  /cdr/v1/clinic/:
    get:
      tags:
        - Doctor and clinic API
      summary: List Clinics
      description: >-
        ### Overview

        Retrieve a list of all clinics registered for your business. Each entry
        includes basic clinic details and the doctors associated with that
        clinic.


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


        **Method:** `GET`


        ### Response Parameters


        | Parameter | Type   |
        Description                                                |

        | --------- | ------ |
        ---------------------------------------------------------- |

        | status    | string | Status of the response (e.g.,
        "success")                   |

        | clinics   | array  | List of clinic objects belonging to the
        business           |
      operationId: ListClinics
      parameters:
        - name: auth
          in: header
          description: >-
            The auth token of the business. It is used to authenticate the
            client. This should be fetched from auth api.
          required: true
          style: simple
          schema:
            type: string
            example: >-
              eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJiX2lkIjoiMTIzNDU2IiwiY2xpZW50X2lkIjoiNzg5MCIsImV4dHJhX2ZpZWxkIjoiZXh0cmFfZmllbGRfZGF0YSJ9.q9KzBI6f4l3OyM_EkB5Quq0l9EEMFh5JS-fx3F_PHUM
      responses:
        '200':
          description: OK - List of clinics
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  clinics:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Clinic's Eka ID
                          example: c-ab2c-34f2d-2gwd-2g2g
                        name:
                          type: string
                          example: Sunrise Clinic
                        pincode:
                          type: string
                          example: '560001'
                        address:
                          type: string
                          example: 123 Main Street, Block A
                        doctors:
                          type: array
                          description: Doctors associated with this clinic
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                example: do1769174683513
                              firstname:
                                type: string
                                example: Rajesh
                              lastname:
                                type: string
                                example: Sharma
                        partner_id:
                          type: string
                          example: Clinic_321_Indore
        '400':
          description: Bad Request - Business could not be resolved from auth token

````