# Madhouse Wallet Recipient Bank-Detail Fields Refresh

> Madhouse Wallet Recipient Bank-Detail Fields Refresh is a paid API for AI agents from try.madhousewallet.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Refreshes and reveals conditional recipient bank-detail input fields based on currency, account type, and previously collected values.

## Facts

- Endpoint: POST https://try.madhousewallet.com/api/public/requirements/refresh
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/try-madhousewallet-com-6c187cf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_32qhvlxY6Dq45VL5fg_KR

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 try-madhousewallet-com-6c187cf4 -d '<json body>'
```

Example prompt: I'm setting up a recipient for a Nigerian NGN bank transfer — I've already selected account type 'bank_account' and picked GTBank as the bank; now refresh the required fields so I can see what branch or routing fields I still need to fill in.

## When to prefer this

Use this endpoint during a multi-step recipient bank-detail collection flow when you need to discover what additional or dependent fields are required after the user has selected a currency, account type, or specific bank. It acts as a dynamic form-field resolver, revealing conditional inputs (like branch codes) that only appear after certain choices are made — essential for building correct payout recipient records across different countries and banks.

## Known failure modes

- Invalid or unsupported currency code returns an error
- Missing required fields in the partial detail set causes a validation error
- Unknown account type returns an error
- Payment of 0.01 USDC not fulfilled results in 402 Payment Required
- Malformed request body returns a 400 error

## How this service works

Convert USDC to 45+ local currencies and receive funds directly to your bank account. Fast, secure crypto offramp powered by Madhouse Wallet.

## Output

Returns an updated set of recipient bank-detail input fields, including any conditionally revealed fields (such as branch code, routing number, or bank-specific fields) that depend on the currency, account type, and values already provided.

## Example request

```json
{
 "type": "bank_account",
 "details": {
  "bank": "GTBank"
 },
 "currency": "NGN"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type": {
   "type": "string",
   "description": "Account type id from a prior requirements response, e.g. nigeria_bank_account."
  },
  "details": {
   "type": "object",
   "description": "Key/value map of the recipient detail fields collected so far (a field key to its chosen value), used to resolve conditional fields."
  },
  "currency": {
   "type": "string",
   "description": "ISO 4217 currency code, e.g. NGN. May also be passed as the ?currency= query param."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "type": "nigeria_bank_account",
    "title": "Bank account",
    "fields": [
     {
      "name": "Recipient bank details",
      "group": [
       {
        "key": "bankCode",
        "name": "Bank",
        "type": "select",
        "required": true,
        "valuesAllowed": [
         {
          "key": "058",
          "name": "GTBank"
         }
        ],
        "refreshRequirementsOnChange": true
       },
       {
        "key": "accountNumber",
        "name": "Account number",
        "type": "text",
        "required": true,
        "maxLength": 10,
        "minLength": 10,
        "refreshRequirementsOnChange": false
       }
      ]
     }
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/try-madhousewallet-com-6c187cf4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from try.madhousewallet.com](https://www.zero.xyz/host/try.madhousewallet.com/llms.txt)
