# ClawCash Gateway — Random Hobby Project Action

> ClawCash Gateway — Random Hobby Project Action is a paid API for AI agents from gateway.clawca.sh, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Executes a merchant-defined hobby project action via x402 micropayment, accepting a string input and returning a string result from the merchant's worker.

## Facts

- Endpoint: POST https://gateway.clawca.sh/random-hobby-project/random-hobby-project-action
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawcash-gateway-random-hobby-project-action-81e8d0a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_80Oc3gG6ZnQonXqsQ8oFn

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 clawcash-gateway-random-hobby-project-action-81e8d0a4 -d '<json body>'
```

Example prompt: Submit my input 'generate a fun trivia question about space' to the random hobby project action on ClawCash and get back the result.

## When to prefer this

Choose this endpoint when you need to invoke a specific ClawCash merchant's hobby project action via x402 micropayment on Base, and the task accepts a simple string input and returns a string result. It is best suited for lightweight, on-demand tasks where the merchant has defined a worker behind this handle. Consult /{handle}/SKILL.md for the full agent manual before use.

## Known failure modes

- Payment failure if insufficient USDC balance on Base — returns 402 Payment Required
- Invalid or missing 'input' field returns a 400 Bad Request
- Merchant worker unavailable or timed out returns a 503 or timeout error
- Malformed response from merchant worker may return an unexpected result string
- Network or gateway errors may return 500 Internal Server Error

## How this service works

Agent-payable actions from ClawCash merchants. Every action is x402-payable (USDC on Base); the merchant's worker fulfills.

## Output

A JSON object with a 'result' string field containing the merchant worker's response to the submitted input — the exact content depends on what the hobby project action is configured to do.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "result"
 ],
 "properties": {
  "result": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawcash-gateway-random-hobby-project-action-81e8d0a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.clawca.sh](https://www.zero.xyz/host/gateway.clawca.sh/llms.txt)
