# Daily Tarot Card API

> Daily Tarot Card API. Receive a single tarot card for daily guidance and reflection. This endpoint uses seeded randomness to ensure the same seed gets the

- Capability page: https://roxyapi.com/apis/tarot-daily-card-api
- Full domain: https://roxyapi.com/products/tarot-api
- OpenAPI spec: https://roxyapi.com/api/v2/tarot/openapi.json
- Remote MCP server: https://roxyapi.com/mcp/tarot

## Overview

Receive a single tarot card for daily guidance and reflection. This endpoint uses seeded randomness to ensure the same seed gets the same card on the same day - perfect for "Card of the Day" features. Provide a seed (userId, email hash, session token) for reproducible consistency, or omit for anonymous daily draws. Returns card with keywords, full meaning, and a daily message summary. Great for tarot apps, wellness platforms, morning ritual apps, and journaling tools.

## Endpoints

- `POST /api/v2/tarot/daily` Get daily tarot card reading

## Example request

```bash
curl -X POST "https://roxyapi.com/api/v2/tarot/daily" \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"seed":"user123","date":"2026-03-06"}'
```

## Example response

```json
{
  "date": "string",
  "seed": "string",
  "card": {
    "id": "string",
    "name": "string",
    "arcana": "major",
    "position": 0,
    "reversed": true,
    "keywords": [
      "string"
    ],
    "meaning": "string",
    "imageUrl": "string"
  },
  "dailyMessage": "string"
}
```

## Remote MCP

Every endpoint is a callable tool on the Remote MCP server at https://roxyapi.com/mcp/tarot over Streamable HTTP. Tool name for `POST /tarot/daily`: `post_tarot_daily`. `tools/list` is free; `tools/call` bills the same as REST.

## FAQ

### What does the Daily Tarot Card API return?

Receive a single tarot card for daily guidance and reflection. Every response is structured JSON with documented fields, not free text, so you map it straight into your product.

### How do I authenticate with the Daily Tarot Card API?

Pass your key in the X-API-Key header on every request. Keys are delivered instantly at checkout with no approval queue. Use a secret sk key server side, or mint a publishable pk key locked to your origins for browser and no-code use.

### Does the Daily Tarot Card API support multiple languages?

Yes. Append the lang query parameter to any endpoint for responses in English, German, Spanish, French, Hindi, Portuguese, Russian and Turkish. The translated payload includes the full interpretation text, not just field labels.

### Is the Daily Tarot Card API available over Remote MCP for AI agents?

Yes. Every endpoint is exposed as a callable tool on the Remote MCP server at https://roxyapi.com/mcp/tarot over Streamable HTTP, so Claude, ChatGPT, Cursor, and any MCP client auto-discover it with no local setup or Docker.

### How is the Daily Tarot Card API billed?

Flat pricing: 1 request equals 1 quota unit, REST and MCP identical, with no credit weighting or per-token markup. Every plan includes all 12 domains, so the Daily Tarot Card API is included at no extra cost.

### What lang values does the Daily Tarot Card API accept?

The lang parameter accepts en, tr, de, es, hi, pt, fr, ru. Case-insensitive where it is a path value.

## Full reference

Fetch the OpenAPI spec at https://roxyapi.com/api/v2/tarot/openapi.json. Master agent manifest at https://roxyapi.com/llms.txt.
