# DebtPulse Collections Rights & Letter Generator

> DebtPulse Collections Rights & Letter Generator is a paid API for AI agents from debtpulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns FDCPA/FCA/ACCC debt collector rights, plus ready-to-send debt-validation and cease-and-desist letter templates by country

## Facts

- Endpoint: GET https://debtpulse.theaslangroupllc.com/api/debt/collections
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/debtpulse-collections-rights-letter-generator-a74601f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yzh5hOvsNacRL-piF4yHd

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 debtpulse-collections-rights-letter-generator-a74601f3
```

Example prompt: A debt collector keeps calling me at work and I want to make them stop — can you get me the official FDCPA rights I have in the US and a ready-to-send cease-and-desist letter I can mail them today?

## When to prefer this

Use this endpoint when a user needs immediate, actionable consumer-rights information and letter templates to respond to debt collectors. Prefer this over generic legal-advice endpoints when the specific need is FDCPA/FCA/ACCC compliance, debt validation, or stopping collector contact. Most useful for consumer-rights agents, debt-relief chatbots, or legal self-help tools.

## Known failure modes

- Unsupported country code returns empty or generic response
- Missing country parameter may default to US only
- Templates may not reflect recent regulatory amendments
- Network timeout if upstream service is unavailable (HTTP 504)
- Payment not confirmed results in 402 Payment Required error

## How this service works

Debt collector rights, debt-validation letters, and cease-and-desist templates. Returns FDCPA/FCA/ACCC protections plus ready-to-send validation and cease-contact letters by country. For consumer-rights and debt-relief agents.

## Output

Returns a summary of consumer protections under relevant debt collection law (FDCPA for US, FCA for UK, ACCC for Australia), a ready-to-send debt-validation letter, and a cease-and-desist letter template tailored to the specified country, so the consumer can immediately respond to collectors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "action": {
       "type": "string",
       "description": "fdcpa | fcra | state-protections | dispute-process | harassment | statute-of-limitations"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "action": "fdcpa",
  "key_rights": [
   "Cannot call before 8am or after 9pm",
   "Must stop contact if requested in writing",
   "Cannot threaten arrest"
  ],
  "cfpb_complaint_url": "consumerfinance.gov/complaint",
  "dispute_deadline_days": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/debtpulse-collections-rights-letter-generator-a74601f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from debtpulse.theaslangroupllc.com](https://www.zero.xyz/host/debtpulse.theaslangroupllc.com/llms.txt)
