Endpoints to retrieve information about the developer's directory.
API Documentation (1.22)
https://api-developer-sandbox.zocdoc.com/
https://api-developer.zocdoc.com/
A comma-delimited list of Provider NPI numbers. A maximum of 50 items will be accepted at a time. One of zip_code
or npis
is required.
A 5 digit zip code that will be used as the location to find facilities near by. One of zip_code
or npis
is required.
The type of facility building, which can be clinic or hospital.
The Zocdoc ID of the visit reason to search by zip_code
for. See Reference Data for options.
The Zocdoc ID of the patient's insurance plan to search by zip_code
for. See Reference Data for options.
- Sandbox
https://api-developer-sandbox.zocdoc.com/v1-beta/facilities
- Production
https://api-developer.zocdoc.com/v1-beta/facilities
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api-developer-sandbox.zocdoc.com/v1-beta/facilities?npis=1234567891%2C0123456789&zip_code=36925&building_type=clinic&page=0&page_size=10&visit_reason_id=pc_FRO-18leckytNKtruw5dLR&insurance_plan_id=ip_2224&max_distance_to_patient_mi=50' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "request_id": "string", "page": 0, "page_size": 0, "total_count": 0, "next_url": "string", "data": [ { … } ] }
- Sandbox
https://api-developer-sandbox.zocdoc.com/v1-beta/facilities/{facility_id}
- Production
https://api-developer.zocdoc.com/v1-beta/facilities/{facility_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api-developer-sandbox.zocdoc.com/v1-beta/facilities/d04b049a-41b1-4aba-9268-d8973cf72cdd \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "request_id": "string", "data": { "facility_id": "string", "name": "string", "npi": "string", "building_type": "string", "specialties": [ … ], "languages": [ … ], "visit_reason_ids": [ … ], "default_visit_reason_id": "string", "location": { … }, "schedule": { … }, "practice": { … } } }