# EBT Medicare Savings Program Eligibility Estimator

> EBT Medicare Savings Program Eligibility Estimator is a paid API for AI agents from energybilltoolkit.co.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Estimates whether a Medicare beneficiary qualifies for a Medicare Savings Program (MSP) based on state, income, resources, and household configuration

## Facts

- Endpoint: POST https://energybilltoolkit.co.uk/mcp-ebt/api/msp/estimate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ebt-medicare-savings-program-eligibility-estimator-4c35e4d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d4dh9hVJKKXSKr6Bk5usj

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 ebt-medicare-savings-program-eligibility-estimator-4c35e4d3 -d '<json body>'
```

Example prompt: Can you check if my mom qualifies for a Medicare Savings Program? She lives in Florida, is enrolled in Medicare Part A, files as a single beneficiary, has a monthly income of $1,200 and countable resources of $8,000, and she's not a disabled worker under 65.

## When to prefer this

Use this endpoint when you need a fast, pay-per-use programmatic MSP eligibility screen for a Medicare beneficiary without integrating a full benefits eligibility platform. It is particularly useful in benefits navigation workflows, social worker tools, or insurance counseling agents that need state-specific MSP estimates at low cost ($0.01/call) without a subscription.

## Known failure modes

- Missing required fields (state, medicareUnit, monthlyIncome, countableResources) return validation errors
- Invalid state code or unsupported state may return an error or null result
- Incorrect medicareUnit enum value causes a schema validation failure
- Negative or implausible income/resource values may produce unreliable estimates
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Pay-per-use EBT screening endpoint

## Output

The endpoint returns an estimated MSP eligibility result indicating whether the beneficiary is likely to qualify for a Medicare Savings Program tier (such as QMB, SLMB, or QI), based on the provided income, resource, state, and household parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "state": {
   "type": "string"
  },
  "hasPartA": {
   "type": "boolean"
  },
  "medicareUnit": {
   "enum": [
    "single",
    "couple"
   ],
   "type": "string"
  },
  "monthlyIncome": {
   "type": "number"
  },
  "countableResources": {
   "type": "number"
  },
  "disabledWorkingUnder65": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ebt-medicare-savings-program-eligibility-estimator-4c35e4d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from energybilltoolkit.co.uk](https://www.zero.xyz/host/energybilltoolkit.co.uk/llms.txt)
