# Healthgrades — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for doctors and healthcare professionals by name and location to find detailed provider profiles including credentials, specialties, and patient reviews. Get comprehensive information about individual practitioners to help you make informed decisions about your healthcare providers.

**Category:** Healthcare | **Website:** [www.healthgrades.com/usearch](https://www.healthgrades.com/usearch) | **Docs:** [parse.bot/marketplace/e02d71d3-f3f1-4f44-9519-15138ac33cda/healthgrades-com-api](https://parse.bot/marketplace/e02d71d3-f3f1-4f44-9519-15138ac33cda/healthgrades-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-healthgrades-com-api-e02d71d3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_doctor_details

Get detailed information about a specific doctor or healthcare provider. Requires the provider_url path from search results (e.g. '/physician/dr-noel-smith-xk82g'). Returns comprehensive profile data including education, office locations, ratings, biography, and more.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `provider_url` | string | Yes | Provider profile URL path from search_doctors results (e.g. '/physician/dr-noel-smith-xk82g'). The profile_url field from search results can be passed directly. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-healthgrades-com-api-e02d71d3/get_doctor_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"provider_url":"<string>"}'
```

### search_doctors

Search for doctors and healthcare professionals by keyword (name, condition, or specialty) and location (city/state or zip). Returns paginated results with up to 20 providers per page, including name, specialty, rating, address, and profile URL. Use 'page' to paginate through results; the response includes total_count and total_pages for navigation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search term: doctor name, condition, or specialty (e.g. 'Smith', 'Family Medicine', 'cardiologist'). |
| `location` | string | Yes | Location to search near: city and state (e.g. 'New York, NY') or zip code. |
| `page` | integer | No | Page number for pagination (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-healthgrades-com-api-e02d71d3/search_doctors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","location":"<string>","page":"<integer>"}'
```
