# Marseille: Yes/No

`POST https://api.astroway.info/v1/tarot/marseille/draw/decision`

Single-card yes/no with verdict.

Group: Tarot: Marseille. Auth: `X-Api-Key` header. Operation ID: `tarot_marseille_draw_decision`.

## Request body

| Field | Type | Required | Description |
|---|---|---|---|
| `seed` | integer | no |  |
| `question` | string | no |  |
| `allowReversed` | boolean | no |  |

```json
{
  "seed": 12345,
  "question": "What should I focus on?",
  "allowReversed": true
}
```

## Responses

| Status | Meaning |
|---|---|
| 200 | Successful calculation |
| 400 | Validation error |
| 401 | Missing or invalid API key |

### Success fields, under `data`

| Field | Type | Required | Description |
|---|---|---|---|
| `verdict` | string | no |  |
| `reason` | string | no |  |

## Example

```bash
curl -X POST https://api.astroway.info/v1/tarot/marseille/draw/decision \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "seed": 12345, "question": "What should I focus on?", "allowReversed": true }'
```

---

Rendered from https://api.astroway.info/v1/openapi.json. HTML page: https://api.astroway.info/docs/api/operations/tarot_marseille_draw_decision/
