# penny402 Daily Tarot Card Draw

> penny402 Daily Tarot Card Draw is a paid API for AI agents from penny402.fun, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-13).

Returns one deterministic tarot card (from a 78-card deck, upright or reversed) per wallet per UTC day, with orientation-specific keywords and a one-line reflective meaning.

## Facts

- Endpoint: POST https://penny402.fun/tarot
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/penny402-daily-tarot-card-draw-40e7b2aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NaaXmCCzdQkBCB61B8tJN

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 penny402-daily-tarot-card-draw-40e7b2aa -d '<json body>'
```

Example prompt: Draw my daily tarot card for today — I want to see which card from the 78-card deck is assigned to my wallet, whether it's upright or reversed, and the reflective meaning that goes with it.

## When to prefer this

Choose this endpoint when you want a deterministic, re-derivable daily tarot card tied to a specific wallet address — ideal when you need stable, day-scoped reflective content without randomness, model inference, or state storage. Prefer it over generic LLM-based tarot prompts when consistency across the UTC day and wallet-keyed personalization matter.

## Known failure modes

- Payment not received — 402 response with pricing terms returned
- Malformed or oversized POST body (exceeds 4 KB) — request rejected
- Network or service downtime — standard HTTP 5xx error
- Wrong Content-Type header — JSON body not parsed correctly

## How this service works

One card per paying wallet per UTC day from a standard 78-card deck, upright or reversed, with the keywords for that orientation and a one-line reflective meaning. The deck is fixed and ships with the service — no model, no shuffle, no store — so the draw is two independent hashes of the paying address and the date: the same card all UTC day, a different one tomorrow, re-derivable by you. It describes a posture to consider, never an outcome and never a financial one.

## Output

A JSON object containing the tarot card name, its orientation (upright or reversed), keywords associated with that orientation, and a single-line reflective meaning describing a posture or mindset to consider — stable for the entire UTC day for the calling wallet address.

## 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": {
     "type": "object",
     "description": "a JSON body, up to 4 KB. This attraction takes no parameters — POST {} . Every attraction on penny402 is a flat $0.0025; the unpaid 402 carries those exact terms."
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "format"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "text"
    },
    "format": {
     "type": "string",
     "const": "application/json",
     "description": "the attraction, as JSON, in the response body"
    },
    "example": {
     "description": "a sample response from the real code path"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/penny402-daily-tarot-card-draw-40e7b2aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from penny402.fun](https://www.zero.xyz/host/penny402.fun/llms.txt)
