# Editorial Plan

Manage the editorial plan: voice, cadence, platform mix, and weekly themes.

GET `/brands/:slug/editorial-plan`

Get the active editorial plan and any proposed changes.

Responses

200 Plan object

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/editorial-plan/propose`

Generate a new plan proposal using AI.

Responses

200 Proposal

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan/propose \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/editorial-plan/approve`

Approve the proposed plan.

Responses

200 Approved

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan/approve \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/editorial-plan/revise`

Request AI revisions with feedback.

Request Body

```
{ "feedback": "More behind-the-scenes content" }
```

Responses

200 Revised

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan/revise \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "feedback": "More behind-the-scenes content" }'
```

POST `/brands/:slug/editorial-plan/update`

Manually update the plan.

Request Body

```
{ "cadence": "5/week", "platform_mix": { "instagram": 0.6 } }
```

Responses

200 Updated

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan/update \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "cadence": "5/week", "platform_mix": { "instagram": 0.6 } }'
```

POST `/brands/:slug/editorial-plan/discard`

Discard the proposed plan.

Responses

200 Discarded

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/editorial-plan/discard \
  -H "Authorization: Bearer $TOKEN"
```

[

← Previous

Posts

](/docs/api/posts)[

Next →

Studio

](/docs/api/studio)

---
Source: https://www.anomalia.so/docs/api/editorial-plan
