Discover/Turquoise API
live

Turquoise APIturquoise.health

Search healthcare procedure prices and provider quality ratings by ZIP code. 2 endpoints cover service lookup and cost comparison across US providers.

Endpoint health
verified 5d ago
list_services
search_care
2/2 passing latest checkself-healing
Endpoints
2
Updated
21d ago

What is the Turquoise API?

The Turquoise Health API provides two endpoints for searching and comparing medical procedure costs across US healthcare providers. list_services returns a catalog of available procedure codes, while search_care accepts a service code and ZIP code to return paginated provider results with price, price relativity, distance, and care quality ratings — letting developers build cost-comparison tools without maintaining their own healthcare pricing data.

Try it

No input parameters required.

api.parse.bot/scraper/5475c330-c28c-4681-8bcf-1db4b28e3167/<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/5475c330-c28c-4681-8bcf-1db4b28e3167/list_services' \
  -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 turquoise-health-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: Turquoise Health SDK — compare procedure prices across providers."""
from parse_apis.turquoise_health_care_price_search_api import TurquoiseHealth, Sort, ServiceNotFound

client = TurquoiseHealth()

# List available medical procedures to find valid service codes.
for svc in client.services.list(limit=5):
    print(svc.code, svc.text)

# Search for affordable colonoscopy providers near NYC, sorted by price.
for provider in client.providers.search(
    service="GA002", location="10001", sort_by=Sort.PRICE_ASC, limit=3
):
    print(provider.name, provider.price, provider.distance_miles, "mi")

# Drill into the cheapest MRI provider by taking the first result.
cheapest = client.providers.search(
    service="RA005", location="90210", distance="25", limit=1
).first()
if cheapest:
    print(cheapest.name, cheapest.price_amount, cheapest.price_relativity)

# Handle a bad service code gracefully with typed error.
try:
    client.providers.search(service="INVALID", location="10001", limit=1).first()
except ServiceNotFound as exc:
    print(f"Service not found: {exc.service}")

print("exercised: services.list / providers.search with Sort enum / ServiceNotFound error")
All endpoints · 2 totalmissing one? ·

List all available medical service/procedure packages with their codes. Each service has a short alphanumeric code (e.g. 'GA002') and a human-readable procedure name. These codes are the required input for search_care. The full catalog is returned in a single response with no pagination.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer - number of available services",
    "services": "array of objects, each with 'code' (string service code) and 'text' (string procedure name)"
  },
  "sample": {
    "data": {
      "total": 33,
      "services": [
        {
          "code": "GA002",
          "text": "Colonoscopy"
        },
        {
          "code": "RA005",
          "text": "MRI without Contrast"
        },
        {
          "code": "RA000",
          "text": "X-Ray"
        }
      ]
    },
    "status": "success"
  }
}

About the Turquoise API

What the API Covers

The Turquoise Health API surfaces healthcare price transparency data across two endpoints. list_services returns the full catalog of searchable procedures — each entry includes a code string (used as the service parameter downstream) and a text label like "Colonoscopy" or "MRI without Contrast". This is the lookup table you call once to populate a procedure selector in your application.

Searching for Provider Prices

search_care is the core endpoint. Required inputs are service (a code from list_services, e.g. GA002) and location (a 5-digit US ZIP code). Optional parameters include distance (radius in miles), min_price and max_price (dollar filters), sort_by (price-asc or price-desc), and page for pagination. Results come back 20 per page; total_pages and total_results let you walk through the full result set.

Provider Response Fields

Each item in the providers array includes name, type (facility category), location, distance_miles, price, price_amount, price_qualifier (which clarifies the pricing basis), price_relativity (how the price compares to area averages), and care_quality rating. The combination of price and quality fields is what makes the data useful for side-by-side provider comparison rather than just raw cost lookup.

Coverage and Scope

Coverage is US-only and ZIP-code-scoped. The procedure catalog is fixed to the codes returned by list_services — not every CPT code is available, so calling list_services first to confirm coverage for your target procedures is the right approach before building dependent workflows.

Reliability & maintenanceVerified

The Turquoise API is a managed, monitored endpoint for turquoise.health — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when turquoise.health 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 turquoise.health 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
5d ago
Latest check
2/2 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 procedure cost estimator that lets users enter a ZIP code and procedure type and see ranked provider prices
  • Filter providers by max_price to surface options within a patient's estimated budget
  • Compare price_relativity scores across providers to identify below-average-cost facilities in a region
  • Incorporate care_quality ratings alongside price data to weight provider recommendations
  • Paginate through search_care results to aggregate full regional pricing datasets for a given procedure code
  • Populate a procedure selector UI using list_services codes and human-readable text labels
  • Analyze price variance by running search_care with sort_by=price-desc vs price-asc across multiple ZIP codes
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 Turquoise Health offer an official developer API?+
Turquoise Health has a platform at turquoise.health focused on price transparency, but their direct developer API access is not publicly documented for self-serve use. This Parse API provides structured access to the same procedure cost and provider data.
What does `price_qualifier` mean in the `search_care` response?+
price_qualifier clarifies the basis of the reported price — for example, whether it reflects a negotiated rate, a cash price, or a chargemaster rate. It is important to read this field alongside price_amount because the same dollar figure can mean different things depending on the qualifier.
Does the API support searching by provider name or filtering by provider type?+
Not currently. search_care filters by service code, ZIP code, distance, and price range. Provider name and type are available in the response for each result, but they cannot be used as input filters. You can fork this API on Parse and revise it to add a provider-name or facility-type filter endpoint.
How does pagination work in `search_care`?+
Results are returned 20 per page. The response includes total_results, total_pages, and results_on_page so you can determine how many pages exist and iterate through them using the page parameter.
Does the API cover procedures outside the `list_services` catalog, such as arbitrary CPT codes?+
Not currently. Only procedure codes returned by list_services are searchable via search_care. If a CPT code you need is not in that catalog, results will not be available for it. You can fork this API on Parse and revise it to extend coverage to additional procedure codes or code systems.
Page content last updated . Spec covers 2 endpoints from turquoise.health.
Related APIs in HealthcareSee all →
caring.com API
Search and compare elder care facilities on Caring.com to find detailed information about assisted living, memory care, nursing homes, and more. Access comprehensive facility listings with ratings, pricing, amenities, and resident reviews to help evaluate senior care options across the US.
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.
senioradvisor.com API
Search and compare senior care facilities across the US by location, ZIP code, or state. Access detailed information including pricing by room type, ratings, user reviews, available services, and care types such as assisted living, memory care, nursing homes, and more.
zocdoc.com API
Search for doctors and medical practices on Zocdoc by specialty and location. Retrieve provider profiles, accepted insurance, office locations, patient reviews, and appointment availability.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
blinkhealth.com API
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.
lalpathlabs.com API
Search and browse Dr. Lal PathLabs pathology tests and packages, get detailed information about specific tests, and find the nearest diagnostic center by location. You can also explore available test categories, view special offers, and discover all testing options across different cities.
Turquoise Health API – Medical Procedure Prices · Parse