# Weekly Horoscope

`POST https://api.astroway.info/v1/horoscope/weekly`

Generate a weekly horoscope (7-day window) with key transit events and themes. AI-written, ephemeris-grounded.

Group: Horoscope. Auth: `X-Api-Key` header. Operation ID: `horoscope_weekly`.

## Parameters

| Name | In | Required | Type | Description |
|---|---|---|---|---|
| `Accept-Language` | header | no | "uk" \| "en" \| "de" \| "ru" \| "pl" \| "es" \| "pt" \| "fr" \| … | Target language for response text fields. RFC 7231 q-weighted. Falls back to ?lang= query param, then body.language, then source uk. Unknown codes silently fall through to uk. |
| `lang` | query | no | "uk" \| "en" \| "de" \| "ru" \| "pl" \| "es" \| "pt" \| "fr" \| … | Alternative to Accept-Language for clients without header control. |
| `X-Provider` | header | no | "openai" \| "anthropic" \| "google" \| "groq" \| "mistral" \| "openrouter" \| "deepseek" \| "together" | Bring your own model key: the LLM provider that should run this completion. Send together with X-Provider-Key or the request is refused: a key with no provider bills us for tokens you meant to pay for, and a provider with no key would look like it worked. The endpoint is fixed per provider on our side and is never taken from the request. There is no fallback to our own chain: if your key fails you get the provider's status and message. |
| `X-Provider-Key` | header | no | string | Your own credential for X-Provider. Never logged, stored or cached: it travels in a header because the request body is hashed into two cache keys, and a BYOK turn bypasses both caches in each direction. A provider error that quotes the key back is redacted before it reaches our logs or your response. Such a turn costs 5 credits instead of the endpoint price, and only when a completion actually ran on your key. |
| `X-Provider-Model` | header | no | string | Optional model id, overriding the default for that provider. Defaults: openai → gpt-4o-mini, anthropic → claude-sonnet-4-5, google → gemini-2.5-flash, groq → openai/gpt-oss-120b, mistral → mistral-large-latest, openrouter → meta-llama/llama-3.3-70b-instruct, deepseek → deepseek-chat, together → meta-llama/Llama-3.3-70B-Instruct-Turbo. |
| `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 |
|---|---|---|---|
| `sign` | "aries" \| "taurus" \| "gemini" \| "cancer" \| "leo" \| "virgo" \| "libra" \| "scorpio" \| … | yes |  |
| `date` | string | no |  |
| `language` | "uk" \| "en" \| "de" \| "pl" \| "es" \| "pt" \| "fr" \| "it" \| … | no |  |
| `disclaimer_inline` | boolean | no |  |

```json
{
  "sign": "aries",
  "language": "uk"
}
```

## Responses

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

### Success fields, under `data`

| Field | Type | Required | Description |
|---|---|---|---|
| `weekStart` | string | no |  |
| `weekEnd` | string | no |  |
| `language` | string | no |  |
| `title` | string | no |  |
| `body` | string | no |  |
| `keyTransits` | object[] | no |  |

## Example

```bash
curl -X POST https://api.astroway.info/v1/horoscope/weekly \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "sign": "aries", "language": "uk" }'
```

---

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