# DealPulse Subscription Rights Lookup

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

Returns applicable consumer legal rights, cancellation protections, and remedies for auto-renewing subscriptions based on US state law and signup circumstances

## Facts

- Endpoint: GET https://dealpulse-weld.vercel.app/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-rights-lookup-f0d31934
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PEyDx-laBexMGy3pQ5CWA

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-rights-lookup-f0d31934
```

Example prompt: I signed up for a subscription online in California on 2023-06-15, never gave affirmative consent to the renewal terms, and they charged me $89.99 total — I tried to cancel but was blocked. What are my consumer rights and legal remedies under California law?

## When to prefer this

Use this endpoint when a user needs to understand their legal rights and remedies specifically around auto-renewing subscription practices in a US state — particularly when there are signs of deceptive practices like no consent obtained, no renewal reminder sent, or cancellation attempts being obstructed. This is not a general deal-finding or price comparison endpoint; it is specifically for subscription consumer protection law lookup by state.

## Known failure modes

- Unsupported state code returns error or empty result
- Invalid or missing required 'state' parameter causes 400-level response
- Ambiguous signup_date may select wrong rule version if law changed mid-year
- total_charged not provided may result in incomplete remedy calculations
- discovery_date omitted may cause incorrect statute of limitations assessment
- Payment not completed via x402 returns 402 Payment Required

## How this service works

Global deal intelligence API. AI-synthesized best deals, price history, coupon discovery, cashback optimization, subscription reviews, credit card stack analysis, grocery savings, student discounts, and flash sale tracking. Covers 50+ major retailers globally with real-time price comparison and Amazon affiliate links. Rakuten cashback, Slickdeals, CamelCamelCamel price tracker, and retailer coupon affiliates included. All endpoints support any language via ?lang=. Pricing: $0.05–$0.10 USDC/call via x402 micropayment.

## Output

A structured response detailing the applicable state-specific auto-renewal and subscription cancellation laws, whether specific violations occurred based on the inputs (no consent, no reminder, cancellation blocking), available remedies such as refund eligibility or statutory damages, relevant rule versions based on signup date, and any discovery-rule deadlines for taking action.

## 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-rights-lookup-f0d31934/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dealpulse-weld.vercel.app](https://www.zero.xyz/host/dealpulse-weld.vercel.app/llms.txt)
