Tarot Deck Generator (Pollinations image API)

Keep this consistent to avoid a Frankenstein deck.
Choices come from GET /models if your deployment exposes it.
Use a 2:3 aspect ratio for tarot cards.
Each card uses base + index for reproducible variety.
Unauthenticated limit is often ~1 request / 10s per IP. Adjust if you have a token.
If your instance requires a token, it will typically go in the Authorization header.
Leave on unless you enjoy false positives and moderation ghosts.
Add random noise to prompts to dodge overly-aggressive caching. 0 keeps prompts clean.
How this builds prompts
Prompt = Tarot card: [Name]. + symbology + your global style. Each card includes canonical elements so the model stops free-styling. Seeds are deterministic per index.
Idle

API Quick Reference (image.pollinations.ai)

cURL examples (copy into your terminal)
# 1) Basic
curl -L "https://image.pollinations.ai/prompt/The%20Fool%20tarot?model=flux&width=768&height=1152&seed=1&nologo=true&nofeed=true&safe=true" -o fool.jpg

# 2) With prompt enhancement (if supported)
curl -L "https://image.pollinations.ai/prompt/The%20Magician%20tarot?model=sdxl&enhance=true&seed=2" -o magician.jpg

# 3) Auth header (if your instance requires it)
curl -H "Authorization: Bearer YOUR_TOKEN" \
  -L "https://image.pollinations.ai/prompt/The%20Sun%20tarot?model=flux&width=768&height=1152&seed=19" -o sun.jpg
Troubleshooting