# Molty Cash - Tip @moltycash via USDC

> Molty Cash - Tip @moltycash via USDC is a paid API for AI agents from api.molty.cash, paid per call via x402, $0.11/call, status unknown (last checked 2026-09-15).

Send a USDC tip or payment to the user @moltycash via the x402 payment protocol on multiple blockchain networks

## Facts

- Endpoint: POST https://api.molty.cash/moltycash/a2a
- Price: $0.11/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-molty-cash-1e0cc73b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tKbdvTcF4zF_o_yDoKAc6

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 api-molty-cash-1e0cc73b -d '<json body>'
```

Example prompt: Send a 0.5 USDC tip to @moltycash using Molty Cash — pay on the Base network.

## When to prefer this

Use this endpoint when you specifically want to tip or pay the user @moltycash via USDC and need multi-chain payment options (Base, Solana, or other EVM networks) with x402 protocol support. Prefer this over generic crypto transfer APIs when working within the Molty Cash creator tipping ecosystem.

## Known failure modes

- Payment not completed within maxTimeoutSeconds — transaction times out
- Insufficient USDC balance on the chosen network — payment rejected
- Unsupported network or asset specified — no matching acceptance entry
- Invalid JSON-RPC format — malformed request error
- Amount below minimum threshold — payment declined

## Output

Returns an x402 payment acceptance object listing supported assets (USDC on Base/eip155:8453, Solana, and other EVM chains), payTo wallet addresses per network, the exact amount required in micro-USDC units (e.g. 510000 for $0.51), and a maxTimeoutSeconds window for completing the payment.

## 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": {
     "properties": {
      "method": {
       "type": "string"
      },
      "params": {
       "type": "object"
      },
      "jsonrpc": {
       "type": "string"
      }
     }
    },
    "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-molty-cash-1e0cc73b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.molty.cash](https://www.zero.xyz/host/api.molty.cash/llms.txt)
