Discover/Zocdoc API
live

Zocdoc APIzocdoc.com

Search Zocdoc providers by specialty and location. Retrieve doctor profiles, patient reviews, accepted insurance, office locations, and appointment availability.

Endpoint health
verified 6d ago
get_specialties
search_doctors
get_practice_profile
get_doctor_profile
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Zocdoc 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.

Try it

No input parameters required.

api.parse.bot/scraper/e83128b9-6866-4adf-a464-5ec3f72ac990/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e83128b9-6866-4adf-a464-5ec3f72ac990/get_specialties' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace zocdoc-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Zocdoc SDK — find doctors by specialty, drill into profiles and practices."""
from parse_apis.zocdoc_api import Zocdoc, ResourceNotFound

client = Zocdoc()

# List all available specialties
for spec in client.specialties.list(limit=5):
    print(spec.name, spec.slug)

# Search for dentists in New York
provider = client.searchresults.search(
    specialty_slug="dentists", address="New York, NY", limit=1
).first()

# Drill into the doctor's full profile via the summary's navigation op
if provider:
    doctor = provider.details()
    print(doctor.name, doctor.rating, doctor.review_count)
    for loc in doctor.locations[:2]:
        print(loc.address, loc.city, loc.state)

# Get a practice profile by slug
try:
    practice = client.practices.get(slug="mount-sinai-doctors-56739")
    print(practice.name, practice.rating, practice.review_count)
    for p in practice.providers:
        print(p.name, p.id)
except ResourceNotFound as exc:
    print(f"Practice not found: {exc}")

print("exercised: specialties.list / searchresults.search / provider.details / practices.get")
All endpoints · 4 totalmissing one? ·

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. Results are not paginated; all specialties are returned in a single call.

Input

No input parameters required.

Response
{
  "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": "Cardiologist",
          "slug": "cardiologists"
        }
      ]
    },
    "status": "success"
  }
}

About the Zocdoc API

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.

Reliability & maintenanceVerified

The Zocdoc API is a managed, monitored endpoint for zocdoc.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when zocdoc.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official zocdoc.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Zocdoc offer an official developer API?+
Zocdoc does not offer a public developer API. There is no documented public API endpoint or developer portal available for third-party access to Zocdoc provider data.
What does search_doctors return beyond basic provider names?+
Each provider object in the results includes rating, review_count, practice_name, city, state, specialty, slug, id, and an availability indicator. The slug is the key field you'll use to call get_doctor_profile or trace back to a practice profile.
Does get_doctor_profile return appointment booking or scheduling data?+
The profile endpoint does not return bookable appointment slots or a booking flow. It returns availability as a presence indicator via search_doctors. Detailed scheduling is not currently exposed. You can fork this API on Parse and revise it to add an endpoint covering scheduling data if that surface is accessible.
How does pagination work in search_doctors?+
Results are returned 10 providers per page. Use the offset parameter in increments of 10 to page through results. The total_count field in the response tells you how many matching providers exist for the query, so you can calculate the number of pages needed.
Are procedure or visit-reason filters supported in search?+
Yes. search_doctors accepts a procedure_id parameter alongside dr_specialty and specialty_slug. However, the API does not currently expose an endpoint to list all available procedure IDs the way get_specialties lists specialties. You can fork this API on Parse and revise it to add a get_procedures endpoint that enumerates valid procedure_id values.
Page content last updated . Spec covers 4 endpoints from zocdoc.com.
Related APIs in HealthcareSee all →
doctoralia.com.br API
Find healthcare specialists in Brazil with their profiles, contact details, Instagram handles, pricing, and patient reviews all in one place. Search and discover doctors by specialty with autocomplete suggestions to quickly locate the right professional for your needs.
lybrate.com API
Search for doctors across Indian cities and specialties, view detailed profiles with patient reviews and services, and discover clinic information and health content all in one place. Find the right healthcare provider by browsing ratings, qualifications, and medical expertise tailored to your needs.
medicalcouncil.org.nz API
Search for registered doctors in New Zealand by name, location, specialty, and professional status, then access their detailed profiles including qualifications and scope of practice. Use this to verify practitioner credentials and find healthcare professionals that match your needs.
ehlers-danlos.com API
Access the Ehlers-Danlos Society's healthcare professionals directory and support group listings. Search and filter providers by location, specialty, profession, and language, and retrieve full provider profiles including contact details and credentials.
avvo.com API
Search for attorneys by location and specialty to find detailed professional profiles, reviews, and practice areas that match your legal needs. Browse community-driven legal Q&A to get answers to common legal questions and learn from other users' experiences.
lawyers.com API
Search and discover lawyers and law firms with detailed profiles, client reviews, and practice area information. Find legal articles and featured firms by specialty to help you locate the right legal representation for your needs.
apollo247.com API
Search and compare medicines, view detailed product information, discover lab tests, and locate nearby Apollo 24|7 pharmacy stores. Browse medical specialties and popular diagnostic services to plan your healthcare needs in one convenient platform.
therapytribe.com API
Search for therapists in your area and access their credentials, specialties, pricing, and client focus areas all in one place. Find the right mental health professional by filtering through available locations and detailed therapy type information.