POST
/
abdm
/
uhi
/
v1
/
physical-consultation
/
search
/
doctors
/
slots
cURL
curl --request POST \
  --url https://api.eka.care/abdm/uhi/v1/physical-consultation/search/doctors/slots \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "end_time": "2025-08-24T08:50:00.000Z",
  "facility_id": "<string>",
  "hpr_id": "<string>",
  "provider_id": "<string>",
  "start_time": "2025-08-24T08:40:00.000Z",
  "transaction_id": "<string>"
}'
{
  "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
end_time
string
required

End date/time until which available slots should be searched

Examples:

"2025-08-24T08:50:00.000Z"

facility_id
string
required

facility ID of the provider

hpr_id
string
required

Health Professional Registry (HPR) ID of the doctor

provider_id
string
required

Identifier of the doctor in the system

start_time
string
required

Start date/time from which available slots should be searched

Examples:

"2025-08-24T08:40:00.000Z"

transaction_id
string
required

Unique transaction ID for tracking the request

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