# RWS: Soul + Personality

`POST https://api.astroway.info/v1/tarot/rider-waite/soul-personality-card`

Returns soul card and personality card pair from birth date.

Group: Tarot: Rider-Waite-Smith. Auth: `X-Api-Key` header. Operation ID: `tarot_rider-waite_soul-personality-card`.

## Parameters

| Name | In | Required | Type | Description |
|---|---|---|---|---|
| `fields` | query | no | string | Comma-separated dotted paths, relative to `data`, to keep in the response. A path is applied to every element of an array, so `planets.name` means the name of each planet. Paths that match nothing come back in `_fields_unmatched`; a list where nothing matches at all is a 400, because an empty object would be a confident wrong answer. |
| `precision` | query | no | integer | Round every non-integer number in the response to this many decimal places. Integers are left alone, because an id is not a measurement. Ecliptic longitudes ship with fourteen decimals by default; 2 is about a tenth of an arcminute. |

## Request body

| Field | Type | Required | Description |
|---|---|---|---|
| `date` | string | yes |  |

```json
{
  "date": "1990-05-15"
}
```

## Responses

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

### Success fields, under `data`

| Field | Type | Required | Description |
|---|---|---|---|
| `date` | string | no |  |
| `soulCard` | object | no |  |
| `soulCard.number` | number | no |  |
| `soulCard.name` | string | no |  |
| `soulCard.upright` | object | no |  |
| `soulCard.reversed` | object | no |  |
| `soulCard.astrology` | string | no |  |
| `soulCard.numerology` | number | no |  |
| `soulCard.yes` | string | no |  |
| `soulCard.slug` | string | no |  |
| `soulCard.category` | string | no |  |
| `personalityCard` | object | no |  |
| `personalityCard.number` | number | no |  |
| `personalityCard.name` | string | no |  |
| `personalityCard.upright` | object | no |  |
| `personalityCard.reversed` | object | no |  |
| `personalityCard.astrology` | string | no |  |
| `personalityCard.numerology` | number | no |  |
| `personalityCard.yes` | string | no |  |
| `personalityCard.slug` | string | no |  |
| `personalityCard.category` | string | no |  |

## Example

```bash
curl -X POST https://api.astroway.info/v1/tarot/rider-waite/soul-personality-card \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "date": "1990-05-15" }'
```

---

Rendered from https://api.astroway.info/v1/openapi.json. HTML page: https://api.astroway.info/docs/api/operations/tarot_rider-waite_soul-personality-card/
