# DebtPulse Credit Dispute Guide

> DebtPulse Credit Dispute Guide is a paid API for AI agents from debtpulse.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns credit dispute letter templates, bureau dispute process steps, and escalation paths by country for resolving inaccurate credit report entries.

## Facts

- Endpoint: GET https://debtpulse.vercel.app/api/debt/dispute
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/debtpulse-credit-dispute-guide-3dcdfbe0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y_TePb47pKswpVRNFendQ

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-credit-dispute-guide-3dcdfbe0
```

Example prompt: Walk me through how to dispute an incorrect late payment on my credit report with Experian in the US — I need a dispute letter template and the full escalation path if they don't fix it.

## When to prefer this

Use this endpoint when a user needs actionable, country-specific credit dispute guidance including formal letter templates and escalation paths. Prefer over generic legal databases when the user's goal is to directly challenge a credit bureau entry, especially across US, UK, or Australian jurisdictions.

## Known failure modes

- Unsupported country returns empty or generic escalation path
- Missing dispute type may yield overly broad letter templates
- Network or payment failure returns 402 or 5xx error
- Ambiguous bureau name may result in incorrect process steps

## How this service works

Credit report dispute guide and FCRA dispute-letter templates. Returns ready-to-send letters, the credit-bureau dispute process, and the escalation path, tailored by country. For credit and consumer-rights agents.

## Output

The agent receives structured guidance including ready-to-use dispute letter templates, a step-by-step bureau dispute process tailored to the user's country, and an escalation path (e.g., CFPB complaint, legal action) if the initial dispute is unsuccessful.

## 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": "minimum-payment | interest-cost | balance-transfer | dispute | hardship | payoff-strategy"
      }
     }
    }
   },
   "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": "minimum-payment",
  "balance": 8500,
  "rate_apr": 24.99,
  "minimum_payment": 170,
  "payoff_years_minimum": 8.4,
  "total_interest_minimum": 8940,
  "interest_saved_extra_100": 5200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/debtpulse-credit-dispute-guide-3dcdfbe0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from debtpulse.vercel.app](https://www.zero.xyz/host/debtpulse.vercel.app/llms.txt)
