# WealthPulse Card Benefit Preview

> WealthPulse Card Benefit Preview is a paid API for AI agents from wealthpulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Scans a single credit card across five specific benefit types (extended warranty, purchase protection, trip delay, cell phone, return protection) to preview which protections likely apply, which are ineligible, and which the card does not carry.

## Facts

- Endpoint: GET https://wealthpulse.theaslangroupllc.com/api/wealth/card-benefit-preview
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wealthpulse-card-benefit-preview-ed835984
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tkQL_Y5u4e2fLO10HqW7t

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 wealthpulse-card-benefit-preview-ed835984
```

Example prompt: Can you do a quick card-benefit preview on my Chase Sapphire Preferred and tell me which of the five protections — extended warranty, purchase protection, trip delay, cell phone, and return protection — actually apply, which I'm ineligible for right now, and which the card just doesn't carry?

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.25) preview of all five standard card protections for a single card before committing to the full claim pack. Prefer this over the full check when the user just wants to know if a benefit exists or is currently eligible, not exact reimbursement figures. Best for pre-purchase decisions, pre-claim triage, or helping a user understand their card's coverage landscape without filing anything.

## Known failure modes

- Card not found in issuer-verified registry — returns unrecognized card error
- Ambiguous card identifier results in multiple possible matches
- Rate limiting or payment failure (x402 $0.25 USDC required per call)
- Partial data: issuer registry may be incomplete for lesser-known cards
- Network timeout if upstream registry is temporarily unavailable

## How this service works

Card-benefit PREVIEW: scans one card across all 5 protections (extended warranty, purchase protection, trip delay, cell phone, return protection) — which likely apply, which are ineligible right now, which the card simply does not carry — from the same issuer-verified registry the $2 claim pack uses. No LLM. Points to the full check and pack for exact numbers.

## Output

A structured preview showing each of the five card benefit types (extended warranty, purchase protection, trip delay, cell phone, return protection) categorized as: likely applicable, currently ineligible, or not carried by the card — drawn from an issuer-verified registry. Does not include exact dollar amounts or claim-ready documents; those require the full check and claim pack.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "card",
  "issuer"
 ],
 "properties": {
  "card": {
   "type": "string",
   "description": "Card slug"
  },
  "issuer": {
   "type": "string",
   "description": "Card issuer slug (chase, amex, capital-one, citi, hsbc, discover, amex-uk, rbc)"
  },
  "item_price": {
   "type": "string",
   "description": "Item price"
  },
  "delay_hours": {
   "type": "string",
   "description": "Hours delayed (trip_delay)"
  },
  "incident_date": {
   "type": "string",
   "description": "Incident date YYYY-MM-DD — sharpens deadline eligibility"
  },
  "purchase_date": {
   "type": "string",
   "description": "Purchase date YYYY-MM-DD — sharpens purchase/return-protection and warranty results"
  },
  "warranty_years": {
   "type": "string",
   "description": "Original manufacturer warranty length (extended_warranty)"
  },
  "phone_paid_on_card": {
   "type": "string",
   "description": "true|false (cell_phone)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wealthpulse-card-benefit-preview-ed835984/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wealthpulse.theaslangroupllc.com](https://www.zero.xyz/host/wealthpulse.theaslangroupllc.com/llms.txt)
