POST
/
v1
/
video
/
create
curl -X POST "https://www.anyfast.ai/v1/video/create" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "veo-3",
    "prompt": "A peaceful garden scene in watercolor style",
    "reference_image": "https://example.com/style-ref.png",
    "duration": 5,
    "resolution": "720p"
  }'
{
  "task_id": "xxx",
  "status": "processing"
}
Create a video generation task with a reference image for style guidance using Veo models. The reference image provides stylistic direction for the generated video.

Request Parameters

model
string
required
Model ID, e.g. veo-3.
prompt
string
required
Text prompt describing the video to generate.
reference_image
string
required
Reference image URL used for style guidance.
duration
integer
Video duration in seconds. Default 5.
resolution
string
Video resolution. Default 720p.
curl -X POST "https://www.anyfast.ai/v1/video/create" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "veo-3",
    "prompt": "A peaceful garden scene in watercolor style",
    "reference_image": "https://example.com/style-ref.png",
    "duration": 5,
    "resolution": "720p"
  }'
{
  "task_id": "xxx",
  "status": "processing"
}