> ## Documentation Index
> Fetch the complete documentation index at: https://docs.elumenta.ru/llms.txt
> Use this file to discover all available pages before exploring further.

# Scheduled Generations

> Run generations on a recurring cron schedule

| Endpoint                        | Description     |
| ------------------------------- | --------------- |
| `GET /api/v2/scheduled`         | List schedules  |
| `POST /api/v2/scheduled`        | Create schedule |
| `PUT /api/v2/scheduled/{id}`    | Update          |
| `DELETE /api/v2/scheduled/{id}` | Delete          |

## Create a Schedule

```json theme={null}
{
  "name": "Daily social post",
  "cron": "0 10 * * *",
  "model": "gpt-5",
  "prompt": "Write a motivational quote for today",
  "is_active": true
}
```

Results appear in generation history as normal entries.
