Discover FQHC / Look-Alike health-center SITES from the HRSA roster by state, type, county
Discover FQHC / Look-Alike health-center SITES from the HRSA roster by state, type, county, name, or newly-added-to-scope date (added_since = new-site trigger). Answers: which FQHC sites exist in my territory, and which are new? Each site is entity-resolved into NPPES (matched_npi / match_method). Powers pharma-sales 340B, medical-device, and medical/travel-nurse staffing targeting. Filter: state, health_center_type, status, name, county, added_since, resolved_only.
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
api.healthparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x177eA123A35253ba8869A7e21E717978e482351D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"health_center_type": "example",
"state": "example",
"status": "example"
},
"type": "http"
},
"output": {
"example": {
"records_notice": "Observational roster of FQHC / FQHC Look-Alike service-delivery sites as published by the HRSA Data Warehouse. matched_npi is this site resolved into the NPPES provider graph (match_method: 'site_npi' = HRSA-published FQHC Site NPI present in NPPES; 'address' = normalized practice-address match).",
"rows": [
{
"bphc_assigned_number": "BPS-H80-000078",
"fqhc_site_npi": "1234567890",
"health_center_type": "Federally Qualified Health Center (FQHC)",
"match_method": "site_npi",
"matched_npi": "1234567890",
"site_added_to_scope": "2001-11-01",
"site_address": "611 E Adams St",
"site_city": "Jacksonville",
"site_name": "Duval Family Health Center",
"site_state": "FL",
"site_status": "Active"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/health-centers/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"added_since": {
"description": "sites added to scope on/after this date (YYYY-MM-DD) — new-site trigger",
"type": "string"
},
"county": {
"description": "county name substring",
"type": "string"
},
"health_center_type": {
"description": "substring, e.g. 'FQHC' or 'Look-Alike'",
"type": "string"
},
"limit": {
"default": 25,
"maximum": 100,
"type": "integer"
},
"name": {
"description": "case-insensitive substring of the site name",
"type": "string"
},
"offset": {
"default": 0,
"type": "integer"
},
"resolved_only": {
"description": "only sites resolved into the NPPES graph (matched_npi present)",
"type": "boolean"
},
"sort": {
"description": "site_added_to_scope|site_name|site_state, optionally :asc/:desc",
"type": "string"
},
"state": {
"description": "2-letter state code(s), comma-separated",
"type": "string"
},
"status": {
"description": "site status, e.g. 'Active'",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.healthparse.io/v1/health-centers/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.healthparse.io/v1/health-centers/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.healthparse.io/v1/health-centers/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14917.json, and this resource appears in /discovery/resources and /discovery/search.