# AMNT Chargeback Risk Review

> AMNT Chargeback Risk Review is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Analyzes Stripe or PayPal transaction logs to identify chargeback risks, explain their causes, and provide prioritized remediation and representment guidance.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/crystal_tundra/chargeback-risk-review
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amnt-chargeback-risk-review-92a91f54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eLBZ22MT_VPcjqRXRK_sT

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 amnt-chargeback-risk-review-92a91f54 -d '<json body>'
```

Example prompt: I've been getting a lot of chargebacks on my Stripe account — here are my recent transaction logs. Can you analyze them to find the highest-risk transactions, explain what's causing the disputes, and give me prioritized steps to fix it and fight back any representable chargebacks?

## When to prefer this

Choose this endpoint when you need to proactively audit Stripe or PayPal transaction data for chargeback exposure, understand root causes of disputes, and get concrete remediation and representment guidance — all in a single API call without needing a dedicated fraud platform account or dashboard.

## Known failure modes

- Vague or incomplete prompt with no transaction data produces generic advice rather than specific analysis
- Transaction logs from unsupported processors (not Stripe or PayPal) may yield lower-quality results
- Very large transaction datasets pasted as text may be truncated or misanalyzed
- Payment gateway API responses or raw JSON logs not formatted as readable text may confuse the model
- Network or x402 payment failure results in no response

## How this service works

chargeback risk review - Analyze Stripe or PayPal transaction logs to uncover chargeback risks, explain causes, and provide prioritized remediation steps and representment guidance.

## Output

A structured AI-generated report covering: identified chargeback risks within the provided transaction logs, explanations of the underlying causes (e.g. friendly fraud, unclear descriptors, fulfillment issues), a prioritized list of remediation steps, and actionable representment guidance for disputable chargebacks.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amnt-chargeback-risk-review-92a91f54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
