curl --request GET \
--url https://api.eka.care/abdm/uhi/v1/physical-consultation/search/doctors \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"doctor_name": "<string>",
"education": "<string>",
"facility_id": "<string>",
"gender": "<string>",
"hpr_id": "<string>",
"image": "<string>",
"languages": [
"<string>"
],
"provider_address": "<string>",
"provider_city": "<string>",
"provider_country": "<string>",
"provider_gps": "<string>",
"provider_name": "<string>",
"specialities": [
"<string>"
],
"transaction_id": "<string>",
"year_of_experience": 123
}
]
}
Fetches a list of doctors matching the given search criteria.
curl --request GET \
--url https://api.eka.care/abdm/uhi/v1/physical-consultation/search/doctors \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"doctor_name": "<string>",
"education": "<string>",
"facility_id": "<string>",
"gender": "<string>",
"hpr_id": "<string>",
"image": "<string>",
"languages": [
"<string>"
],
"provider_address": "<string>",
"provider_city": "<string>",
"provider_country": "<string>",
"provider_gps": "<string>",
"provider_name": "<string>",
"specialities": [
"<string>"
],
"transaction_id": "<string>",
"year_of_experience": 123
}
]
}
The API requires a Bearer token (JWT) for authentication.
Eka User ID (OID)
Partner User ID
Partner HIP ID
OK
The response is of type object
.
Was this page helpful?