# DealPulse Subscription-Trap Rights Check

> DealPulse Subscription-Trap Rights Check is a paid API for AI agents from dealpulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Checks a consumer's legal rights and remedies under 13 U.S. state auto-renewal laws when they believe they've been trapped in an unwanted subscription, returning deterministic duty assessments, remedy calculations, and SOL deadlines.

## Facts

- Endpoint: GET https://dealpulse.theaslangroupllc.com/api/deals/subscription-rights
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dealpulse-subscription-trap-rights-check-83830e71
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oSJQxK2RK9o3XOx5B1yRn

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 dealpulse-subscription-trap-rights-check-83830e71
```

Example prompt: I signed up for a subscription in California in March 2023, never got a proper cancellation confirmation, and they kept charging me — can you check whether CA's auto-renewal law applies, whether there's a scienter issue, what remedies I'm owed, and whether I'm still within the statute of limitations to send a demand letter?

## When to prefer this

Use this endpoint when a consumer needs a deterministic, statute-verified assessment of their auto-renewal law rights in one of the 13 supported U.S. states — especially when the FTC federal rule is not available as a remedy (post-2025 vacatur) and state law is the only viable path. Prefer this over general legal Q&A when you need precise remedy math, SOL deadlines, and letter-worthiness decisions grounded in primary statutory text rather than LLM inference.

## Known failure modes

- State not among the 13 covered states returns an 'honest-no' or unsupported-state response rather than an estimate
- Missing or ambiguous effective date causes incorrect statute-of-limitations gating
- Seller type not matching exempt-seller categories may produce incorrect applicability determination
- Incomplete cancellation-attempt details may prevent scienter flag evaluation
- Invalid or unparseable date inputs cause parameter validation errors

## How this service works

Subscription-trap rights check — the FTC click-to-cancel rule is VACATED (8th Cir. 2025); your rights live in STATE auto-renewal laws. Deterministic duty + remedy math, 13 states: CA/NY/DC/VA/IL/VT/OR/HI/DE letter-worthy (DC treble/$1,500; HI $1,000 floor; DE treble + pre-suit notice), FL void-refund tier, honest-no CO/WA/GA. Effective-date gating, exempt-seller screen, scienter flags, SOL deadlines incl. OR 1-yr discovery. Verified against primary statute text. No LLM.

## Output

Returns a deterministic legal-rights analysis covering: whether the named state's auto-renewal law applies to the seller, the specific statutory duties the seller had, violation flags including scienter indicators, the calculated remedy amounts (e.g. treble damages, per-violation floors), the SOL deadline, whether the situation is 'letter-worthy' (i.e. worth a demand letter), and any pre-suit notice requirements — all sourced against primary statute text without LLM inference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "state"
 ],
 "properties": {
  "state": {
   "type": "string",
   "description": "US state code (CA|NY|DC|VA|IL|VT|OR|HI|DE|FL|CO|WA|GA encoded)"
  },
  "no_consent": {
   "type": "string",
   "description": "true if no affirmative consent to renewal terms was obtained"
  },
  "signup_date": {
   "type": "string",
   "description": "YYYY-MM-DD — selects the rule version in force"
  },
  "total_charged": {
   "type": "string",
   "description": "USD total from your billing records"
  },
  "cancel_blocked": {
   "type": "string",
   "description": "true if cancellation was attempted and obstructed"
  },
  "discovery_date": {
   "type": "string",
   "description": "YYYY-MM-DD you discovered the practice (OR 1-yr / GA 2-yr discovery clocks)"
  },
  "signup_channel": {
   "type": "string",
   "description": "online | phone | in_person (gates cancel-parity duties)"
  },
  "no_renewal_reminder": {
   "type": "string",
   "description": "true if no renewal reminder arrived"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dealpulse-subscription-trap-rights-check-83830e71/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dealpulse.theaslangroupllc.com](https://www.zero.xyz/host/dealpulse.theaslangroupllc.com/llms.txt)
