Text to Video
veo3.1-fast
VEO 3 video generation; Fast and Quality also support continuation from a successful Artany job.
Quick start
Submit a request with this public model ID. The API immediately returns a normalized job; poll GET /v1/jobs/{jobId} while its status is queued or running.
curl -X POST "https://api.artany.ai/v1/videos/generations" \
-H "Authorization: Bearer $ARTANY_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: unique-request-id" \
-d '{"model":"veo3.1-fast","operation":"generate","prompt":"A paper kite above a quiet coast","duration":8,"aspect_ratio":"16:9","resolution":"720p"}'Request
Headers
| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for an Artany API key. |
| Content-Type | Yes | Must be application/json. |
| Idempotency-Key | Recommended | 8–128 characters. Reusing it with an identical request prevents duplicate jobs and charges. |
Body
{
"model": "veo3.1-fast",
"operation": "generate",
"prompt": "A paper kite above a quiet coast",
"duration": 8,
"aspect_ratio": "16:9",
"resolution": "720p"
}Request Parameters
Only fields in this model’s public request contract are shown. Defaults are applied before validation and quoting.
Note:Text-to-video and image-to-video requests are supported. The output duration is fixed at 8 seconds.
Stable public model ID for this request.
Artany request operation. Use generate for a new video or remix to continue an eligible completed job.
Allowed: generate, remix
Text description for the generated video.
Length: 1–∞
Completed Artany job ID used as the source when operation is remix.
Note:Required for Remix and must reference an eligible completed job.
Video duration in seconds.
Allowed: 8
Note:This model supports only 8 seconds.
Output framing.
Allowed: 16:9, 9:16
Field description
- 16:9
- Landscape
- 9:16
- Portrait
Requested output resolution tier. The selected tier can affect quote and availability.
Allowed: 720p, 1080p, 4k
Optional images for image-to-video generation.
Items: 0–3
- Two images select first/last-frame generation; three images select reference-image generation.
[ "https://example.com/first-frame.jpg" ]
Image-conditioned generation treatment.
Allowed: frame, reference
Field description
- frame
- Use two images as opening and ending frames.
- reference
- Use reference images to guide the result.
- When omitted, the supported generation treatment is selected from the supplied image count.
Whether to request GIF output when that output path is enabled.
Whether the configured fallback execution path may be used when the primary route is unavailable.
Whether to request the supported minimally processed result.
Use Cases
Choose the request shape that matches the source media you provide. The examples use the public model ID and accepted public fields.
Text-to-video
Create an 8-second video from a prompt.
{
"model": "veo3.1-fast",
"operation": "generate",
"prompt": "Dolphins leaping in the azure ocean",
"duration": 8,
"aspect_ratio": "16:9"
}First/last-frame video
Supply two images to establish the opening and ending frame.
{
"model": "veo3.1-fast",
"operation": "generate",
"prompt": "A flower opens at sunrise",
"duration": 8,
"image_urls": [
"https://example.com/start.jpg",
"https://example.com/end.jpg"
]
}Remix
Continue an eligible completed Artany job.
{
"model": "veo3.1-fast",
"operation": "remix",
"source_job_id": "job_…",
"prompt": "Continue the scene with a slow camera pan"
}Response and task status
A successful asynchronous submission returns HTTP 202 with a supplier-neutral job.
{
"id": "job_…",
"object": "generation.job",
"model": "veo3.1-fast",
"status": "queued",
"progress": 0,
"output": null,
"error": null,
"billing": {
"estimated_credits": "…",
"frozen_credits": "…",
"charged_credits": "0",
"state": "frozen",
"price_version": "2026-07-18.picverse-parity"
},
"created_at": "2026-07-21T00:00:00.000Z",
"completed_at": null
}- queued / running: continue polling.
- succeeded: retrieve media URLs from
output; billing has settled. - failed / canceled: inspect
error; frozen Credits are released.
Pricing
The price shown for a matching configuration is the fixed amount settled on successful completion. Price version: 2026-07-18.picverse-parity.
| resolution | Credits |
|---|---|
| 720p | 28 |
| 1080p | 28 |
| 4k | 128 |