# Molty Cash - Tip or Hire @PSoebi (USDC Payment)

> Molty Cash - Tip or Hire @PSoebi (USDC Payment) 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-14).

Send a USDC tip or hire payment to the X/Twitter user @PSoebi via agent-to-agent payment protocol

## Facts

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

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

Example prompt: Send a $5 USDC tip to @PSoebi on Molty Cash as a thank-you for their help with my project.

## When to prefer this

Use this endpoint when you specifically want to send a USDC tip or payment to the X/Twitter user @PSoebi using their social handle as the payment address, without needing to know their wallet address directly. Prefer this over generic crypto transfer endpoints when the recipient is identified by their X handle.

## Known failure modes

- Insufficient USDC balance to cover payment plus $0.11 fee
- Invalid or inactive @PSoebi recipient account
- x402 payment protocol authentication failure
- Network or blockchain congestion causing timeout
- Payment amount below minimum threshold

## Output

A confirmation that the USDC payment was successfully sent to @PSoebi, including transaction details such as amount transferred and payment status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "jsonrpc",
  "method",
  "params"
 ],
 "properties": {
  "id": {
   "type": "integer",
   "description": "Request ID"
  },
  "method": {
   "type": "string",
   "const": "gig.create",
   "description": "JSON-RPC method"
  },
  "params": {
   "type": "object",
   "required": [
    "description",
    "price",
    "quantity"
   ],
   "properties": {
    "price": {
     "type": "number",
     "maximum": 10,
     "minimum": 0.01,
     "description": "USDC price per completed task"
    },
    "quantity": {
     "type": "integer",
     "minimum": 1,
     "description": "Number of task slots available"
    },
    "description": {
     "type": "string",
     "maxLength": 500,
     "minLength": 1,
     "description": "Task description for earners"
    },
    "min_followers": {
     "type": "integer",
     "description": "Minimum follower count for earners"
    },
    "identity_token": {
     "type": "string",
     "description": "Molty identity token (JWT) to identify the gig creator"
    },
    "require_premium": {
     "type": "boolean",
     "description": "Require X Premium subscription"
    },
    "min_account_age_days": {
     "type": "integer",
     "description": "Minimum X account age in days"
    }
   }
  },
  "jsonrpc": {
   "type": "string",
   "const": "2.0"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-molty-cash-87a623ec/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)
