# penny402 Oblique Strategy Card Generator

> penny402 Oblique Strategy Card Generator is a paid API for AI agents from penny402.fun, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Generates a single original lateral-thinking constraint card, fresh per call at high temperature, optionally steered by a topic up to 140 characters.

## Facts

- Endpoint: POST https://penny402.fun/oblique
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/penny402-oblique-strategy-card-generator-5b4a3c87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kSy_5sDnFn8cOogR_rcZi

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-oblique-strategy-card-generator-5b4a3c87 -d '<json body>'
```

Example prompt: I'm totally stuck on my product naming process — can you generate an original oblique strategy card about branding to shake things up?

## When to prefer this

Choose this endpoint when you need a single, fresh, never-repeated oblique strategy card generated on demand — especially when you want topic-steering without cache pollution. Prefer it over static card decks or pooled systems when novelty and originality on every call matter, or when you want to integrate a pay-per-use creative constraint into an agentic workflow without storing or reusing previous cards.

## Known failure modes

- Topic exceeds 140 characters — card may not be generated or topic may be truncated
- Body payload exceeds 4 KB limit — request rejected
- Payment not settled (unpaid 402) — card not produced, 402 response with pricing terms returned
- Model fails to produce a card — no result returned and nothing is settled
- Malformed JSON body — request rejected

## How this service works

One original constraint card in the tradition of lateral-thinking decks: a short instruction, reversal or question you can apply to whatever is stuck, written fresh by a model at high temperature on every call. The cards are ours, never a card from any published deck. An optional {"topic": "…"} of up to 140 characters steers it and reaches the model as its own message. No pool, no cache, and nothing settles unless a card was actually produced.

## Output

A single original lateral-thinking constraint card returned as JSON — a short instruction, reversal, or question generated fresh at high temperature by a model, never cached, never sourced from any published deck. If a topic was provided it will be reflected in the card's angle.

## 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. Optionally {\"topic\": \"…\"} of at most 140 characters — it steers the answer, and it is sent to the model as its own message rather than inside our instructions. POST {} to let the model choose. 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-oblique-strategy-card-generator-5b4a3c87/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)
