# Blinkhealth — 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.

> Find affordable medications by comparing prices across pharmacies, viewing available formulations, and locating nearby participating locations. Search drugs, discover generic alternatives, and check preferred drug lists to save money on prescriptions.

**Category:** Healthcare | **Website:** [blinkhealth.com/](https://blinkhealth.com/) | **Docs:** [parse.bot/marketplace/ea923229-de36-4b51-b50c-990116797058/blinkhealth-com-api](https://parse.bot/marketplace/ea923229-de36-4b51-b50c-990116797058/blinkhealth-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-blinkhealth-com-api-ea923229/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brand_to_generic_mapping

Get the mapping between brand and generic names for a medication. Works for both brand slugs (e.g., 'lipitor') and generic slugs (e.g., 'atorvastatin'). Returns the display name, generic equivalent, and canonical slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Medication slug or name (e.g., 'lipitor', 'metformin'). |

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

### get_drug_formulations

Get all available formulations (forms, dosages, quantities) for a specific drug without pricing details. Returns the structure of available options for the medication.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The medication slug or name (e.g., 'atorvastatin', 'metformin'). |

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

### get_drug_pricing

Retrieve pricing information for a specific medication by drug name or slug. Returns pricing for home delivery, local pickup, and retail estimates across all forms and dosages. Each form contains dosages, and each dosage contains quantities with detailed pricing breakdowns.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The medication slug or name (e.g., 'metformin', 'lipitor', 'atorvastatin'). |

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

### get_nearby_pharmacies

Get participating pharmacies near a given ZIP code. Returns pharmacy name, address, contact info, distance, and network status. Results are ordered by proximity.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `zip_code` | string | Yes | 5-digit US ZIP code, leading zeros preserved (e.g., '10001', '02134'). |

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

### get_preferred_drug_list

Retrieve the full list of medications available on Blink Health, derived from the sitemap. Returns thousands of drug slugs that can be used with other endpoints.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blinkhealth-com-api-ea923229/get_preferred_drug_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_drug

Search for medications by name. Performs a direct slug-based lookup against the Blink Health catalog. Returns an empty results array if no match is found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Medication name to search for (e.g., 'metformin', 'Lipitor'). |

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