# VA Facilities Search

> VA Facilities Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search Veterans Health Administration facilities (medical centers, CBOCs, vet centers, health care centers) by state, city, name, or type, returning location, address, coordinates, classification, and operating status.

## Facts

- Endpoint: GET https://api.govparse.io/v1/va/facilities/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/va-facilities-search-577e3839
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aAV1k7c10PSFaCDQs--jC

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 va-facilities-search-577e3839
```

Example prompt: Can you find all VA medical centers and outpatient clinics in Texas, starting with Houston — I need their addresses, coordinates, and operating status?

## When to prefer this

Use this endpoint when you need structured, searchable data on Veterans Health Administration physical facilities — their locations, types, and operational details — sourced from public VA/HRSA records. Prefer this over general web search when you need machine-readable coordinates, addresses, and facility classifications for downstream mapping, territory analysis, or contractor research targeting VA sites.

## Known failure modes

- No results returned if state code is invalid or unrecognized
- Facility type filter with unsupported value returns empty or error response
- Health services and classification fields absent if VA Lighthouse API key is not configured
- Pagination offset beyond total results returns empty list
- Name fragment too generic may return large unfiltered result sets

## How this service works

Where are the VA's facilities, and of what type? Search Veterans Health Administration sites of care (medical centers, CBOCs, vet centers, health care centers) by state, city, name, or facility type. Returns location, address, coordinates, and — when the VA Lighthouse Facilities API key is configured — classification, health services, and operating status. A territory map for medical-device, imaging, staffing, and construction sellers into the VA. Public VA/HRSA records.

## Output

Returns a paginated list of VA facility records matching the search criteria, each including facility name, full address, geographic coordinates, facility type, classification (when VA Lighthouse API key is configured), available health services, and operating status. Defaults to 25 results per page with offset-based pagination up to 100 per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "city": {
     "type": "string",
     "examples": [
      "Houston"
     ],
     "description": "City name fragment."
    },
    "name": {
     "type": "string",
     "examples": [
      "Michael E. DeBakey"
     ],
     "description": "Facility name fragment."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX"
     ],
     "description": "State code(s), CSV."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip, for paging."
    },
    "facility_type": {
     "type": "string",
     "examples": [
      "medical_center"
     ],
     "description": "Facility type(s), CSV: vet_center, medical_center, outpatient_clinic, health_care_center, primary_care_cboc, multi_specialty_cboc."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/va-facilities-search-577e3839/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
