zocdoc.com APIzocdoc.com ↗
Search Zocdoc providers by specialty and location. Retrieve doctor profiles, patient reviews, accepted insurance, office locations, and appointment availability.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/e83128b9-6866-4adf-a464-5ec3f72ac990/get_specialties' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the full list of medical specialties available on Zocdoc. Returns specialty names and URL slugs that can be used with the search_doctors endpoint.
No input parameters required.
{
"type": "object",
"fields": {
"specialties": "array of specialty objects with name, id, and slug"
},
"sample": {
"data": {
"specialties": [
{
"id": null,
"name": "Dentist",
"slug": "dentists"
},
{
"id": null,
"name": "Dermatologist",
"slug": "dermatologists"
},
{
"id": null,
"name": "Primary Care Doctor",
"slug": "primary-care-doctors"
}
]
},
"status": "success"
}
}About the zocdoc.com API
The Zocdoc API covers 4 endpoints for querying healthcare providers on Zocdoc, including specialties, location-based provider search, and full doctor and practice profiles. The search_doctors endpoint returns up to 10 providers per page with fields like rating, review_count, practice_name, and availability slots, while get_doctor_profile exposes education history, accepted insurances, languages spoken, and individual patient reviews.
Specialties and Search
Start with get_specialties to retrieve the complete list of medical specialties available on Zocdoc, each returned with a name, id, and slug. These values feed directly into search_doctors via the dr_specialty parameter (integer ID) or the specialty_slug parameter (string slug such as 'dentists'). The search endpoint also accepts an address field (city name or zip code) and an offset for paginating through results in increments of 10. Each result in the providers array includes name, specialty, rating, review_count, city, state, slug, id, practice_name, and availability status.
Doctor Profiles
get_doctor_profile takes a slug from search results and returns a detailed record for a single provider. Response fields include name, rating, review_count, specialty, professional_statement, education (with instituteName and degreeType), languages, insurances (with name and id), and locations (with address, city, state, zip, and phone). The reviews array contains individual patient reviews with rating, comment, date, and patient_name.
Practice Profiles
get_practice_profile accepts a practice slug and returns aggregate information about a medical group or clinic: name, rating, review_count, locations, specialties, and a providers array listing each affiliated provider with their name, id, and rating. Practice slugs appear within doctor profile pages and can be extracted from get_doctor_profile results for follow-up lookups.
- Build a provider directory filtered by specialty and zip code using search_doctors with dr_specialty and address
- Aggregate patient review data across providers in a metro area using get_doctor_profile reviews arrays
- Compare accepted insurance networks across multiple providers using the insurances field from get_doctor_profile
- Map practice locations and phone numbers for a given specialty using locations from get_practice_profile
- Track provider availability and rating trends over time using search_doctors rating and availability fields
- Identify multi-language providers in a region by filtering get_doctor_profile languages arrays
- Enumerate all providers affiliated with a medical group via get_practice_profile providers array
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.