# Monthly Forecast

`POST https://api.astroway.info/v1/bazi/monthly`

Same Sheng-Ke + branch-clash analysis as yearly, but applied to a specific calendar month. Month branch resolved via mid-month jieqi.

Group: BaZi (Four Pillars). Auth: `X-Api-Key` header. Operation ID: `bazi_monthly`.

## 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 |
|---|---|---|---|
| `natalDate` | string | yes |  |
| `natalTime` | string | no |  |
| `natalTzOffset` | number | no |  |
| `targetYear` | integer | yes |  |
| `targetMonth` | integer | yes |  |
| `language` | string | no |  |

```json
{
  "natalDate": "1990-05-15",
  "targetYear": 2026,
  "targetMonth": 6
}
```

## Responses

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

### Success fields, under `data`

| Field | Type | Required | Description |
|---|---|---|---|
| `natalDayMaster` | object | no |  |
| `natalDayMaster.stem` | string | no |  |
| `natalDayMaster.element` | string | no |  |
| `natalDayMaster.yin` | boolean | no |  |
| `targetYear` | number | no |  |
| `targetMonth` | number | no |  |
| `targetPillar` | object | no |  |
| `targetPillar.stem` | string | no |  |
| `targetPillar.branch` | string | no |  |
| `targetPillar.pillar` | string | no |  |
| `targetPillar.animal` | string | no |  |
| `elementFlow` | object | no |  |
| `elementFlow.stem` | object | no |  |
| `elementFlow.branch` | object | no |  |
| `branchInteractions` | object | no |  |
| `branchInteractions.clashes` | object[] | no |  |
| `notes` | string[] | no |  |
| `disclaimer` | string | no |  |

## Example

```bash
curl -X POST https://api.astroway.info/v1/bazi/monthly \
  -H "X-Api-Key: aw_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "natalDate": "1990-05-15", "targetYear": 2026, "targetMonth": 6 }'
```

---

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