# RemittancePulse Reg E Rights Check

> RemittancePulse Reg E Rights Check is a paid API for AI agents from remittancepulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an applicability verdict and key deadline summary for a Reg E Subpart B remittance rights letter based on specific transaction facts, without generating the full letter.

## Facts

- Endpoint: GET https://remittancepulse.theaslangroupllc.com/api/remit/rights-check
- 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/remittancepulse-reg-e-rights-check-43899910
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SpuHvKK22sHHB3IFXFS-0

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 remittancepulse-reg-e-rights-check-43899910
```

Example prompt: I sent $500 to my family in the Philippines via Western Union on March 15th, it never arrived, and the provider hasn't responded — can you check if this qualifies for a Reg E Subpart B rights letter, which type would apply, and whether I'm still within the 180-day window?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.25) deterministic eligibility check before committing to the full Reg E rights letter generation. Prefer this over /api/remit/rights-letter when you want to confirm applicability and review deadline status without paying for or generating the full citation-locked document. Ideal for triage workflows, dispute intake screens, or agents that need to route cases before escalating to full letter generation.

## Known failure modes

- Missing or malformed transaction date preventing deadline calculation
- Unrecognized provider name or corridor causing verdict to be inconclusive
- Transaction facts outside Reg E Subpart B scope returning a non-applicable verdict
- Transaction amount below or above Reg E coverage thresholds
- Malformed request parameters returning a 400 error
- Downstream rule engine unavailability returning a 503

## How this service works

Agent-tier preview of the $2 remittance rights letter — applicability verdict (will a citation-locked document be supportable on these facts, and which type), the deadlines that gate it (180-day report window, 90-day/3-day/1-day provider clock, 30-minute cancellation), and what the full letter adds. Same deterministic Reg E Subpart B engine as /api/remit/rights and /api/remit/rights-letter. No LLM.

## Output

Returns a structured verdict indicating whether the submitted transaction facts support a Reg E Subpart B citation-locked document, the specific letter type that applies (if any), all relevant statutory deadlines (180-day consumer report window, 90/3/1-day provider resolution clocks, 30-minute cancellation period), and a summary of what the full paid rights letter would add — all computed deterministically without LLM inference.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "issue"
 ],
 "properties": {
  "issue": {
   "type": "string",
   "description": "never_arrived | arrived_late | arrived_short | wrong_person_paid | sender_typo_number | want_to_cancel | want_documentation"
  },
  "provider": {
   "type": "string",
   "description": "Provider name"
  },
  "fees_paid": {
   "type": "string",
   "description": "Fees paid USD"
  },
  "principal": {
   "type": "string",
   "description": "Transfer amount USD"
  },
  "sender_state": {
   "type": "string",
   "description": "Your state (CA adds Fin. Code §2102)"
  },
  "date_available": {
   "type": "string",
   "description": "Disclosed Date Available (YYYY-MM-DD) — starts the 180-day clock"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remittancepulse-reg-e-rights-check-43899910/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from remittancepulse.theaslangroupllc.com](https://www.zero.xyz/host/remittancepulse.theaslangroupllc.com/llms.txt)
