Test all Tarot API endpoints
# Get all cards
curl "https://your-domain.com/api/tarot/cards?token=YOUR_TOKEN"
# Get specific card
curl "https://your-domain.com/api/tarot/cards/0?token=YOUR_TOKEN"
# Draw 3 cards
curl -X POST "https://your-domain.com/api/tarot/draw?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"count": 3, "shuffle_seed": 12345}'
// Get all cards
const response = await fetch('/api/tarot/cards?token=YOUR_TOKEN');
const data = await response.json();
// Draw cards
const response = await fetch('/api/tarot/draw?token=YOUR_TOKEN', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ count: 3, shuffle_seed: 12345 })
});