# DebtPulse Debt Consolidation Advisor

> DebtPulse Debt Consolidation Advisor is a paid API for AI agents from debtpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Analyzes a borrower's total debt situation and returns ranked consolidation and relief options with debt-to-income ratio and free resource referrals

## Facts

- Endpoint: GET https://debtpulse.theaslangroupllc.com/api/debt/consolidate
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/debtpulse-debt-consolidation-advisor-72d968d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jllgMv4s7ifnUgXZwclK-

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-debt-consolidation-advisor-72d968d8
```

Example prompt: I have $45,000 in total debt and my monthly income is about $3,000 — can you analyze my situation and tell me the best consolidation or debt relief options available to me, including any free nonprofit resources?

## When to prefer this

Choose this endpoint when a user needs a high-level overview of their debt consolidation options along with a debt-to-income ratio and referral to free nonprofit resources. It is best for initial triage of a debt situation before diving into specialized analysis like snowball/avalanche payoff calculators, bankruptcy eligibility, or student loan forgiveness — those are handled by sibling DebtPulse endpoints.

## Known failure modes

- Missing or malformed input data may result in incomplete recommendations
- Payment failure via x402 PAYMENT-SIGNATURE header returns a 402 error blocking the response
- Extremely unusual debt profiles may produce generic rather than tailored recommendations
- Service unavailability returns a 5xx error with no debt analysis

## How this service works

Debt consolidation calculator: personal loan vs balance transfer vs HELOC. Compares all options with specific lender recommendations and live rate context, tailored by credit score and country. For debt-relief and personal-finance agents.

## Output

Returns a JSON object with the borrower's total debt, computed debt-to-income ratio, a top recommended relief strategy (e.g. non-profit credit counseling), a free resource URL (e.g. NFCC.org), and a ranked array of relief options ranging from DIY payoff plans to bankruptcy as a last resort.

## 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": "analyze | relief-options | free-resources"
      },
      "income": {
       "type": "string"
      },
      "total_debt": {
       "type": "string"
      }
     }
    }
   },
   "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": {
  "total_debt": 45000,
  "recommended": "Non-profit credit counseling",
  "free_resource": "NFCC.org",
  "debt_to_income": 0.6,
  "relief_options": [
   "DIY payoff plan",
   "Non-profit credit counseling (free)",
   "Debt management plan",
   "Bankruptcy (last resort)"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/debtpulse-debt-consolidation-advisor-72d968d8/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)
