---
title: "Get Clinic details"
method: GET
path: "/dr/v1/business/clinic/{clinic_id}"
tags: ["Doctor and clinic API"]
---

# Get Clinic details

`GET /dr/v1/business/clinic/{clinic_id}`

### Overview
This API endpoint retrieves detailed information about a specific clinic using its unique identifier.
### Endpoint
**URL:** `{{HOST}}/dr/v1/business/clinic/{{clinic_id}}`
**Method:** GET
### Request Parameters
| Parameter | Type | Description | Required |
| --- | --- | --- | --- |
| clinic_id | string | Unique identifier for the clinic | Yes |
### Response Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| success | boolean | Indicates if the request was successful |
| data | object | Response data object |
| data.clinic | object | Clinic details |
| data.clinic.clinic_id | string | Unique identifier of the clinic |
| data.clinic.name | string | Name of the clinic |
| data.clinic.address | object | Address details of the clinic |
| data.clinic.address.city | string | City of the clinic |
| data.clinic.address.country | string | Country of the clinic |
| data.clinic.address.lat | string | Latitude of the clinic |
| data.clinic.address.line1 | string | Address line 1 |
| data.clinic.address.lon | string | Longitude of the clinic |
| data.clinic.address.pincode | string | Pincode of the clinic |
| data.clinic.address.state | string | State of the clinic |

## Path parameters

- `clinic_id` string, required

## Headers

- `auth` string, required

## Response `200`

OK

- object
  - `success` boolean
  - `data` object
    - `clinic` object
      - `clinic_id` string
      - `name` string
      - `address` object
        - `city` string
        - `country` string
        - `lat` string
        - `line1` string
        - `lon` string
        - `pincode` string
        - `state` string

## Other responses

- `404` — Not Found
- `500` — Internal Server Error

---

[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)
