catalogue / kling-2-6

Kling 2.6 sample output
sample from fal.ai/fal-ai/kling-video/v2.6/pro/image-to-video
VideoRuns now

Kling 2.6

from $0.14

per second

one second of output with audio ($0.07/s without)

Fixed at intake, charged only on a successful run. Rate verified 2026-08-27 against api.kie.ai (kling 2.6, image-to-video, with audio-10.0s), divided by its stated clip length.

POST https://renderhour.com/api/gateway/v1/videos/generations

ID=$(curl -s -X POST https://renderhour.com/api/gateway/v1/videos/generations \
  -H "Authorization: Bearer $RENDERHOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "kie/kling-2.6/image-to-video",
  "prompt": "Slow aerial shot over a foggy coastline at sunrise",
  "image_urls": [
    "https://example.com/input.png"
  ],
  "sound": false
}' | jq -r '.id')

# 202 Accepted — the render is queued; poll until it finishes.
while :; do
  JOB=$(curl -s https://renderhour.com/api/gateway/v1/videos/generations/$ID \
    -H "Authorization: Bearer $RENDERHOUR_API_KEY")
  case "$(echo "$JOB" | jq -r '.status')" in
    succeeded) echo "$JOB" | jq -r '.data[0].url'; break ;;
    failed|cancelled) echo "$JOB" | jq -r '.error // .status'; exit 1 ;;
  esac
  sleep 5
done

$0.14 per secondone second of output with audio ($0.07/s without). Quoted before the run; a failed run is not charged.

Runs against your own balance at that price. A failed run is not charged.

Or copy the request and run it with your RenderHour API key — the one in your profile.