# Molty Cash - Tip or Hire @renniebase

> Molty Cash - Tip or Hire @renniebase 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 payment tip or hiring payment to the X user @renniebase via the Molty Cash platform

## Facts

- Endpoint: POST https://api.molty.cash/renniebase/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-4b4a6f3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jEw-w6e5b_LL7ebLBsEM1

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

Example prompt: Send a USDC tip to @renniebase on Molty Cash for the content they posted — just send 1 USDC with a note saying 'great work on the thread'.

## When to prefer this

Use this endpoint when you specifically want to send a USDC tip or payment to the X (Twitter) user @renniebase via the Molty Cash platform. Prefer this over generic crypto transfer APIs when the recipient is identified by their social media handle rather than a wallet address.

## Known failure modes

- Insufficient USDC balance — payment cannot be processed
- Invalid or missing payment amount
- Network or blockchain transaction failure
- Recipient account not found or inactive on Molty Cash
- x402 payment protocol authentication failure
- Rate limiting or API unavailability

## Output

A confirmation that the USDC payment was sent to @renniebase, including transaction details and proof of payment on the Molty Cash platform.

## 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-4b4a6f3c/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)
