
Model:
Price: from 760 credits per request · ≈ $0.38High stability with detailed usage records on the APIAny platform.
Any integer from 4s to 15s.
Video output resolution.
Video aspect ratio.
USD estimate ≈ $0.38: $999 tier: $1 = 2,000 credits.

Real image and video examples made through our models. Preview freely; using a preset never starts generation.
Actual generation model: minimax-h3-text-to-video
{
"model": "minimax-h3-text-to-video",
"prompt": "Photorealistic cinematic shot of a clearly adult traveler in a plain sand-colored jacket walking along a broad safe coastal path at golden hour. Gentle side-tracking camera, natural walking motion, light wind moving the jacket, stable horizon, realistic sea reflections, calm sophisticated travel-film aesthetic. Single continuous shot. No text, logos, labels, subtitles, graphic overlays or watermark. No cuts. Natural coherent movement, stable geometry.",
"duration": 5,
"quality": "768p",
"aspect_ratio": "16:9"
}History
Saved locally in this browser
0 running · 0 completed
Billing Rules
Authentication
Every request needs a Bearer token in the Authorization header. Create an API key in the console.
Authorization: Bearer YOUR_API_KEYhttps://apiany.ai/v1/videos/generationsRequest parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
model | string | Required | Model identifier to invoke. Use this model's ID. |
prompt | string | Required | Text prompt describing what you want to generate. |
duration | number | Optional | Any integer from 4s to 15s. · Range: 4–15 · Default: 4 |
quality | string | Optional | Video output resolution. · Options: 768p, 2k · Default: 768p |
aspect_ratio | string | Optional | Video aspect ratio. · Options: 16:9, 9:16, 1:1, 4:3, 3:4, 21:9 · Default: 16:9 |
callback_url | string | Optional | Optional webhook URL called when the async task finishes. |
Request example
curl "https://apiany.ai/v1/videos/generations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-h3-text-to-video",
"prompt": "Photorealistic cinematic shot of a clearly adult traveler in a plain sand-colored jacket walking along a broad safe coastal path at golden hour. Gentle side-tracking camera, natural walking motion, light wind moving the jacket, stable horizon, realistic sea reflections, calm sophisticated travel-film aesthetic. Single continuous shot. No text, logos, labels, subtitles, graphic overlays or watermark. No cuts. Natural coherent movement, stable geometry.",
"duration": 4,
"quality": "768p",
"aspect_ratio": "16:9"
}'Response example
{
"task_id": "task_abc123",
"status": "pending",
"poll_url": "/v1/tasks/task_abc123",
"request_id": "req_abc123",
"credits": {
"reserved": 1000
}
}This endpoint is asynchronous: it returns a task_id immediately. Poll the task-status endpoint until status becomes succeeded, then read the result. Generated media links stay valid for 24 hours.