# x402toll Debt Payoff Plan Report (Avalanche vs Snowball)

> x402toll Debt Payoff Plan Report (Avalanche vs Snowball) is a paid API for AI agents from x402toll.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Simulates debt payoff month-by-month using both avalanche and snowball strategies, returning payoff order, debt-free month, total interest, and the gap between strategies.

## Facts

- Endpoint: POST https://x402toll.com/v1/reports/debt-plan
- 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/x402toll-debt-payoff-plan-report-avalanche-vs-snowball-2ded7b25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wekggc0xg-KUleA5FaK0L

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 x402toll-debt-payoff-plan-report-avalanche-vs-snowball-2ded7b25 -d '<json body>'
```

Example prompt: Run a full avalanche vs snowball debt payoff simulation for my three debts: a Visa with $8,400 balance at 22.9% APR and $180 minimum, a car loan with $12,000 at 6.5% APR and $240 minimum, and a personal loan with $3,200 at 14% APR and $95 minimum — I can put an extra $200 a month toward debt. Tell me the payoff order, debt-free month, total interest for each strategy, and the exact gap between them.

## When to prefer this

Use this endpoint when a user wants a detailed, strategy-level debt payoff comparison between avalanche and snowball methods with month-by-month rollover modeling — not just a simple payoff calculator. Ideal when the user has multiple debts (up to 8) and wants to see the concrete interest savings and time difference between strategies, including the effect of extra monthly payments.

## Known failure modes

- Missing required fields (balance, apr, minPayment) on any debt object returns a validation error
- More than 8 debts in the array exceeds maxItems limit
- Minimum payments that don't cover interest may result in infinite payoff horizon or error
- Non-numeric values for financial fields cause schema validation failure
- Extra monthly amount below zero may be rejected

## How this service works

Full debt-payoff report: avalanche vs snowball simulated month-by-month with debt rollover — payoff order, debt-free month, total interest, and the exact gap between strategies.

## Output

A full debt payoff report with month-by-month simulation for both avalanche (highest-APR-first) and snowball (lowest-balance-first) strategies, including: payoff order of each debt, the month and year you become debt-free under each strategy, total interest paid under each strategy, the exact dollar difference between strategies, and debt rollover amounts as each debt is eliminated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "debts": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "balance",
     "apr",
     "minPayment"
    ],
    "properties": {
     "apr": {
      "type": "number"
     },
     "name": {
      "type": "string"
     },
     "balance": {
      "type": "number"
     },
     "minPayment": {
      "type": "number"
     }
    }
   },
   "maxItems": 8,
   "minItems": 1
  },
  "extraMonthly": {
   "type": "number",
   "default": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402toll-debt-payoff-plan-report-avalanche-vs-snowball-2ded7b25/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402toll.com](https://www.zero.xyz/host/x402toll.com/llms.txt)
