POST
/
abdm
/
uhi
/
v1
/
physical-consultation
/
search
/
doctors
cURL
curl --request POST \
  --url https://api.eka.care/abdm/uhi/v1/physical-consultation/search/doctors \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "district_code": "295",
  "district_name": "Bengaluru Urban",
  "doctor_name": "Ganesh",
  "end_time": "2025-08-05T23:59:59Z",
  "facility_name": "Apollo Hospital",
  "hpr_id": null,
  "latitude": "12.9716",
  "longitude": "77.5946",
  "pincode": "560001",
  "radius_km": "10",
  "speciality": "CARDIOLOGY",
  "start_time": "2025-08-05T00:00:00Z",
  "state_code": "29",
  "state_name": "Karnataka"
}'
{
  "order_id": "<string>",
  "provider_id": "<string>",
  "txn_id": "<string>"
}

Authorizations

Authorization
string
header
required

The API requires a Bearer token (JWT) for authentication.

Headers

X-Pt-Id
string

Eka User ID (OID)

X-Partner-Pt-Id
string

Partner User ID

X-Hip-Id
string

Partner HIP ID

Body

application/json
district_code
string | null

Search doctor by District code

Examples:

"295"

district_name
string | null

Search doctor by District name

Examples:

"Bengaluru Urban"

doctor_name
string | null

Search doctor by Name

Examples:

"Ganesh"

end_time
string

End time for doctor availability (24H format)

Examples:

"2025-08-05T23:59:59Z"

facility_name
string | null

Search doctor by Facility/Hospital name

Examples:

"Apollo Hospital"

hpr_id
string | null

Search doctor by HPR ID

latitude
string | null

Latitude for location-based search

Examples:

"12.9716"

longitude
string | null

Longitude for location-based search

Examples:

"77.5946"

pincode
string | null

Search doctor by Pincode

Examples:

"560001"

radius_km
string | null

Radius in kilometers for location-based search

Examples:

"10"

speciality
string | null

Search doctor by Speciality

Examples:

"CARDIOLOGY"

start_time
string

Start time for doctor availability (24H format)

Examples:

"2025-08-05T00:00:00Z"

state_code
string | null

Search doctor by State code

Examples:

"29"

state_name
string | null

Search doctor by State name

Examples:

"Karnataka"

Response

OK

order_id
string

Unique booking/order ID

provider_id
string

Provider ID for the next API call

txn_id
string

Unique transaction ID for the next API call