# Molty.cash USDC Tip/Hire for @web3idan

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

Send a USDC micropayment to tip or hire the specific creator @web3idan via the Molty.cash platform

## Facts

- Endpoint: POST https://api.molty.cash/web3idan/a2a
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-molty-cash-2f991595
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vhaTcX54l_vauFoSFpSKn

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

Example prompt: Send a $5 USDC tip to @web3idan on Molty.cash as payment for his help with my smart contract review.

## When to prefer this

Use this endpoint when you specifically want to tip or pay @web3idan via USDC on the Molty.cash platform, particularly for micropayments or gig-based compensation using the x402 payment protocol. Prefer this over generic crypto transfer APIs when the recipient is already registered on Molty.cash and you want proof-based or task-linked payment flows.

## Known failure modes

- Insufficient USDC balance — payment cannot be completed
- x402 payment protocol error — micropayment header missing or malformed
- Invalid or inactive recipient handle — @web3idan account not found on platform
- Network/blockchain congestion causing transaction delay or failure
- Duplicate payment attempted — idempotency check may reject re-submission

## Output

A confirmation of the USDC payment sent to @web3idan, including transaction details and transfer receipt showing the amount paid and recipient.

## Example request

```json
{
 "id": 1,
 "method": "tip",
 "params": {
  "amount": 0.05,
  "identity_token": "placeholder_jwt_token"
 },
 "jsonrpc": "2.0"
}
```

## 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-2f991595/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)
