# MoneyWave Transfer Status Lookup

> MoneyWave Transfer Status Lookup 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).

Returns the live status and details of a MoneyWave money transfer by its transfer ID, including status, amount, currency, recipient, deposit address, and any errors.

## Facts

- Endpoint: GET https://try.madhousewallet.com/api/public/transfer-status
- 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-8acce1a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-t9THWw-wna05g5tsKs6c

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-8acce1a7
```

Example prompt: What's the current status of my MoneyWave transfer with ID a3f82c1b09e4d67f5a2e0c8b — has it completed or is it still pending?

## When to prefer this

Use this endpoint when you have a MoneyWave transfer ID and need to check its current status or retrieve its full details. It is the canonical status-tracking endpoint in the MoneyWave/Madhouse Wallet workflow after a transfer has been created via /api/public/transfer. Prefer this over polling the quote or confirm endpoints, as it is the single source of truth for transfer lifecycle state.

## Known failure modes

- Invalid or malformed transfer ID (not 24 hex chars) returns an error response
- Transfer ID not found returns a not-found or error status
- Payment of 0.01 USDC not received triggers a 402 Payment Required response
- Network timeout or service unavailability returns a 5xx 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 a JSON object containing the transfer's machine-readable status (e.g. pending, processing, completed, failed), a human-readable status label, the source amount in USD, the target currency (ISO 4217), the recipient ID, the Base USDC deposit address used for funding (or null), a MoneyWave reference code, the creation timestamp, and any error information.

## 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",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Madhouse Wallet transfer id (24 hex characters) returned by /api/public/transfer."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "id",
      "status",
      "status_label"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "The transfer id."
      },
      "type": {
       "type": "string",
       "description": "Transfer type."
      },
      "amount": {
       "type": "number",
       "description": "Source amount in USD."
      },
      "status": {
       "type": "string",
       "description": "Machine status, e.g. pending, processing, completed, failed."
      },
      "currency": {
       "type": [
        "string",
        "null"
       ],
       "description": "Target currency (ISO 4217), or null."
      },
      "reference": {
       "type": "string",
       "description": "Madhouse Wallet reference code."
      },
      "timestamp": {
       "type": "string",
       "description": "ISO creation timestamp."
      },
      "recipientId": {
       "type": "number",
       "description": "Recipient id used for the payout."
      },
      "status_label": {
       "type": "string",
       "description": "Human-readable status."
      },
      "deposit_address": {
       "type": [
        "string",
        "null"
       ],
       "description": "Base USDC deposit address for funding, or null."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "6650f1a2b3c4d5e6f7a8b9c0",
  "type": "payout",
  "amount": 100,
  "status": "processing",
  "currency": "NGN",
  "reference": "MW-7F3C1A2B",
  "timestamp": "2026-06-01T11:59:00.000Z",
  "recipientId": 12345,
  "status_label": "Processing",
  "deposit_address": "0x1234567890abcdef1234567890abcdef12345678"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/try-madhousewallet-com-8acce1a7/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)
