# Healthparse FQHC / Look-Alike Health Center Site Search

> Healthparse FQHC / Look-Alike Health Center Site Search is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Search and filter HRSA-rostered FQHC and Look-Alike health center sites by state, county, type, name, or newly-added date, with each site entity-resolved to an NPI via NPPES.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/health-centers/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-fqhc-look-alike-health-center-site-search-a3ee2d56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__t2BvL309aIaxjSINAhaK

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability healthparse-fqhc-look-alike-health-center-site-search-a3ee2d56
```

Example prompt: Show me all active FQHC and Look-Alike health center sites in Texas and Ohio that have been added to the HRSA roster since January 1, 2024, and only include sites that have a matched NPI — up to 50 results sorted by date added.

## When to prefer this

Choose this endpoint when you need to discover or monitor FQHC and Look-Alike health center sites from the official HRSA roster, especially when you need NPI-resolved records for downstream pharma 340B targeting, medical device prospecting, or nurse staffing outreach. Prefer it over generic provider search when the specific federal FQHC/Look-Alike designation matters, or when you need to trigger on newly-scoped sites via added_since.

## Known failure modes

- No results returned when state code is malformed or unsupported — verify 2-letter ISO state code
- added_since date in wrong format (non-YYYY-MM-DD) returns a validation error
- resolved_only=true with a narrow geography may return zero results if NPI matching is incomplete for that area
- Offset beyond total result count returns an empty list
- health_center_type substring with no matching records returns empty dataset

## How this service works

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.

## Output

A paginated list of HRSA-rostered FQHC and Look-Alike health center site records, each containing site name, state, county, health center type, site status, date added to scope, and NPI match details (matched_npi and match_method) where entity resolution into NPPES succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "name": {
     "type": "string",
     "description": "case-insensitive substring of the site name"
    },
    "sort": {
     "type": "string",
     "description": "site_added_to_scope|site_name|site_state, optionally :asc/:desc"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string",
     "description": "2-letter state code(s), comma-separated"
    },
    "county": {
     "type": "string",
     "description": "county name substring"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "status": {
     "type": "string",
     "description": "site status, e.g. 'Active'"
    },
    "added_since": {
     "type": "string",
     "description": "sites added to scope on/after this date (YYYY-MM-DD) — new-site trigger"
    },
    "resolved_only": {
     "type": "boolean",
     "description": "only sites resolved into the NPPES graph (matched_npi present)"
    },
    "health_center_type": {
     "type": "string",
     "description": "substring, e.g. 'FQHC' or 'Look-Alike'"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-fqhc-look-alike-health-center-site-search-a3ee2d56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.healthparse.io](https://www.zero.xyz/host/api.healthparse.io/llms.txt)
