# VetPulse VA Healthcare Guide

> VetPulse VA Healthcare Guide is a paid API for AI agents from vetpulse-five.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns VA healthcare enrollment eligibility, priority group assignment, copay schedules, CHAMPVA dependent coverage, and community care options for veterans

## Facts

- Endpoint: GET https://vetpulse-five.vercel.app/api/vet/healthcare
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vetpulse-va-healthcare-guide-e46c2cbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZcyMXl4cSW3Vcx9gRkcrT

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 vetpulse-va-healthcare-guide-e46c2cbd
```

Example prompt: I'm a veteran with a 60% disability rating and I served 8 years on active duty — can you check my VA healthcare enrollment eligibility, what priority group I'd be in, what my copays would look like, and whether my spouse qualifies for CHAMPVA?

## When to prefer this

Use this endpoint when a veteran or benefits advocate agent needs a comprehensive VA healthcare eligibility and benefits overview in a single call, especially when the user needs to understand priority groups, copays, dependent CHAMPVA coverage, and community care together rather than separately

## Known failure modes

- Missing or insufficient veteran profile data returns incomplete eligibility assessment
- Ambiguous service history may result in generic rather than personalized guidance
- Rapidly changing VA policy may cause information to lag behind current regulations
- Unusual service circumstances (Guard/Reserve activations) may not be fully addressed

## How this service works

VA healthcare guide for veteran and VA-benefits agents. Returns enrollment eligibility, priority group, copays, CHAMPVA for dependents, and community care.

## Output

Returns a structured guide covering VA healthcare enrollment eligibility determination, assigned priority group, applicable copay rates for outpatient/inpatient/medications, CHAMPVA eligibility for dependents, and community care qualification criteria

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language — any language supported"
      },
      "income": {
       "type": "number",
       "description": "Annual household income — affects priority group 5–8 placement and copay amounts"
      },
      "country": {
       "type": "string",
       "description": "Country whose veteran healthcare system to assess: US, UK, Canada, Australia, New Zealand, or Germany (other countries supported on a best-effort basis). Defaults to US if omitted and cannot be inferred."
      },
      "dependents": {
       "type": "boolean",
       "description": "Set true to include dependent health-coverage analysis (e.g. CHAMPVA for US)"
      },
      "priority_group": {
       "type": "string",
       "description": "Current VA priority group if known (1–8, US only)"
      },
      "disability_rating": {
       "type": "string",
       "description": "VA disability rating — service-connected veterans (any rating) are Priority Group 1–3"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vetpulse-va-healthcare-guide-e46c2cbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vetpulse-five.vercel.app](https://www.zero.xyz/host/vetpulse-five.vercel.app/llms.txt)
