# Molty Cash - Tip or Hire @0xmesuthere

> Molty Cash - Tip or Hire @0xmesuthere 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 @0xmesuthere via the x402 micropayment protocol

## Facts

- Endpoint: POST https://api.molty.cash/0xmesuthere/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-f4b6ad94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zSLwpldUz9_YTRiNOk5EL

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-f4b6ad94 -d '<json body>'
```

Example prompt: Send a $1.50 USDC tip to @0xmesuthere on Molty Cash.

## When to prefer this

Use this endpoint when you need to send a USDC tip or payment specifically to the user @0xmesuthere via the Molty Cash platform. Prefer this over generic crypto transfer APIs when you want a simple, pre-configured payment endpoint tied to a specific social identity, with multi-chain USDC support (Base, Solana, and others) and x402 protocol compliance.

## Known failure modes

- Insufficient USDC balance in paying wallet
- Payment timeout exceeded (maxTimeoutSeconds: 300)
- Unsupported blockchain network selected
- Invalid JSON-RPC method or malformed request body
- x402 payment header missing or invalid
- Network congestion causing transaction failure

## Output

Returns an x402 payment request object with accepted payment methods including USDC on Base (EVM), Solana, and other supported chains, along with destination wallet addresses, exact amounts in base units, and a 5-minute timeout 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-f4b6ad94/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)
