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

# Grok Imagine 1.5 Video Generation

> Create an asynchronous text-to-video or image-to-video task

`POST https://1788.love/v1/videos`

| Field        | Type      | Required | Description                              |
| ------------ | --------- | -------- | ---------------------------------------- |
| `model`      | string    | Yes      | `grok-imagine-1.5-video`                 |
| `prompt`     | string    | Yes      | Video description.                       |
| `size`       | string    | No       | `16:9`, `9:16`, `1:1`, `3:2`, or `2:3`.  |
| `duration`   | integer   | No       | Video duration in seconds, from 6 to 30. |
| `quality`    | string    | No       | `480p` or `720p`.                        |
| `image_urls` | string\[] | No       | Optional public reference-image URLs.    |

```json theme={null}
{
  "model": "grok-imagine-1.5-video",
  "prompt": "A dog runs on a sunny beach in slow motion",
  "size": "16:9",
  "duration": 6,
  "quality": "720p"
}
```

The response contains a 1788 task ID. Query `GET https://1788.love/v1/videos/{id}` for its current status.
