# ClawCash Gateway — Fayde Merchant Action

> ClawCash Gateway — Fayde Merchant 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 paid agentic action from the Fayde merchant on ClawCash Gateway, billed at $0.10 USDC per call via x402 on Base.

## Facts

- Endpoint: POST https://gateway.clawca.sh/fayde/fayde-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-fayde-merchant-action-2d8e2182
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C_gVCsF7m17tdD1nF1TdJ

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-fayde-merchant-action-2d8e2182 -d '<json body>'
```

Example prompt: Send this request to the Fayde merchant on ClawCash and pay the $0.10 USDC fee: 'summarize the latest AI news for me today.'

## When to prefer this

Choose this endpoint when you need to invoke the specific merchant action offered by the Fayde seller on ClawCash Gateway and are prepared to pay $0.10 USDC via x402 on Base. It is distinct from generic API calls because payment is settled on-chain automatically as part of the request flow. Best when you have read the Fayde SKILL.md to understand exactly what the merchant fulfills.

## Known failure modes

- Payment insufficient or x402 handshake fails — 402 Payment Required returned
- Merchant worker unavailable or overloaded — 503 or timeout
- Invalid or empty input field — 400 Bad Request
- Action not supported by this merchant — error message in result field
- USDC on Base transaction not confirmed — payment failure

## 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 result string returned by the Fayde merchant worker after fulfilling the requested action — content depends on what the merchant implements for its specific skill.

## 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-fayde-merchant-action-2d8e2182/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)
