# SeniorPulse Unclaimed Benefits Eligibility Screener

> SeniorPulse Unclaimed Benefits Eligibility Screener is a paid API for AI agents from seniorpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Screens an older adult's income and assets against SSI, Medicaid, Medicare Savings Programs, VA benefits, and PACE eligibility rules by state, flagging likely unclaimed benefits.

## Facts

- Endpoint: GET https://seniorpulse.theaslangroupllc.com/api/senior/benefits
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/seniorpulse-unclaimed-benefits-eligibility-screener-8c1a4bd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J2DTmctzYJl9gi-QZXDvy

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 seniorpulse-unclaimed-benefits-eligibility-screener-8c1a4bd0
```

Example prompt: My 74-year-old mother lives in Florida, has about $900/month in Social Security income, roughly $8,000 in savings, and my late father was a wartime veteran — can you screen her for any senior government benefits she's probably eligible for but not claiming, like SSI, Medicaid, Medicare Savings Programs, VA benefits, or PACE?

## When to prefer this

Use this endpoint when a caregiver, benefits counselor, or AI agent needs a fast, multi-program eligibility screening for an older adult across the major federal and state benefit programs (SSI, Medicaid, Medicare Savings Programs, VA Aid and Attendance, PACE) in a single call — especially to surface unclaimed benefits. Prefer this over single-program checkers when you need a holistic view across programs by U.S. state.

## Known failure modes

- Missing required state parameter — endpoint returns error
- Income or asset values out of expected range — may return incomplete screening
- State not supported or benefits data not current — returns partial or null results
- Invalid or unrecognized veteran status input — VA benefit screening skipped

## How this service works

Senior benefits finder / unclaimed benefits eligibility check, by state. Screens SSI, Medicaid, Medicare Savings Programs, VA benefits, and PACE from income and assets, and flags what an older adult likely qualifies for but is not claiming. For caregiver and benefits agents — informational, not financial advice.

## Output

A structured list of government benefit programs (SSI, Medicaid, Medicare Savings Programs, VA benefits, PACE) that the older adult likely qualifies for based on their state, income, and assets, with flags indicating which benefits they are probably not currently claiming. Informational output only — not financial or legal advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "state"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language — any language supported"
  },
  "state": {
   "type": "string",
   "description": "US state name or 2-letter abbreviation (e.g. 'Texas', 'TX')"
  },
  "assets": {
   "type": "number",
   "description": "Total countable assets in USD — excludes primary home and one vehicle"
  },
  "income": {
   "type": "number",
   "description": "Monthly gross income in USD (Social Security, pension, wages)"
  },
  "country": {
   "type": "string",
   "description": "Country of residence — defaults to US programs (SSI, Medicaid, VA) if omitted. Set for non-US countries (e.g. 'United Kingdom', 'Canada', 'Australia') to get that country's equivalent senior benefit programs instead."
  },
  "veteran": {
   "type": "boolean",
   "description": "Set true to include VA Aid & Attendance and other veteran-specific benefits in the assessment"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seniorpulse-unclaimed-benefits-eligibility-screener-8c1a4bd0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seniorpulse.theaslangroupllc.com](https://www.zero.xyz/host/seniorpulse.theaslangroupllc.com/llms.txt)
