# AgentCash Router · Fortune Demo

> AgentCash Router · Fortune Demo is a paid API for AI agents from fortune.fulinlabs.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a random fortune/wisdom statement per paid API call using the x402 micropayment protocol

## Facts

- Endpoint: POST https://fortune.fulinlabs.com/api/fortune
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentcash-router-fortune-demo-48d8ed3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__TVjHPkTd8-PysNqxlOVK

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 agentcash-router-fortune-demo-48d8ed3c -d '<json body>'
```

Example prompt: Fetch me a random fortune using the AgentCash fortune demo — go ahead and make the $0.001 USDC micropayment to get it.

## When to prefer this

Choose this endpoint when you want to demonstrate or test the x402 pay-per-call micropayment protocol with a lightweight, low-cost ($0.001 USDC) real API call. It is ideal for developers validating x402 payment flows, agent builders testing USDC micropayment integration, or anyone wanting a fun, minimal live demo of paid AI agent APIs. Not suitable for production fortune/quote needs at scale due to per-call cost.

## Known failure modes

- Insufficient USDC balance — payment fails and no fortune is returned
- Invalid or missing x402 payment header — 402 Payment Required response
- Network timeout reaching fortune.fulinlabs.com
- Vercel cold-start latency on first call
- Incorrect payment amount — payment rejected by facilitator

## How this service works

Random fortune — fixed price, x402 exact

## Output

A short fortune or wisdom statement returned as the response body after a successful $0.001 USDC micropayment via the x402 protocol. The agent receives the fortune text it can relay directly to the user.

## 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": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentcash-router-fortune-demo-48d8ed3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fortune.fulinlabs.com](https://www.zero.xyz/host/fortune.fulinlabs.com/llms.txt)
