> ## 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.

# Quickstart

> Make your first 1788 API request

Create an API key in the 1788 console, then send it as a Bearer token.

```bash theme={null}
curl --request POST \
  --url https://1788.love/v1/videos \
  --header 'Authorization: Bearer YOUR_1788_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"model":"grok-imagine-1.5-video","prompt":"A dog runs on a sunny beach","duration":6}'
```

Video generation is asynchronous. Save the returned task ID and query `GET /v1/videos/{id}` for progress.
