logo
RunComfy
  • ComfyUI
  • TrainerNew
  • Models
  • API
  • Pricing
discord logo
MODELS
Explore
All Models
LIBRARY
Generations
MODEL APIS
API Docs
API Keys
ACCOUNT
Usage

FLUX 3 First Last Frame to Video: Vídeo de fotogramas clave de inicio y fin sobre modelos y API | RunComfy

blackforestlabs/flux-3/first-last-frame-to-video

FLUX 3 First Last Frame to Video genera un clip entre las imágenes inicial y final con audio nativo opcional en 720p o 1080p.

modelApiDoc_tableOfContents

modelApiDoc_nav1GetStartedmodelApiDoc_nav2AuthenticationmodelApiDoc_nav3ApiReferencemodelApiDoc_navSubmitRequestmodelApiDoc_navMonitorStatusmodelApiDoc_navRetrieveResultsmodelApiDoc_navCancelRequestmodelApiDoc_nav4FileInputsmodelApiDoc_navHostedFilemodelApiDoc_nav5SchemamodelApiDoc_navInputSchemamodelApiDoc_navOutputSchema

modelApiDoc_h2GetStarted

modelApiDoc_getStartedBeforeModelblackforestlabs/flux-3/first-last-frame-to-videomodelApiDoc_getStartedAfterModel modelApiDoc_getStartedMid modelApiDoc_schemaLinkmodelApiDoc_getStartedAfterSchema

curl --request POST \
  --url https://model-api.runcomfy.net/v1/models/blackforestlabs/flux-3/first-last-frame-to-video \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer <token>" \
  --data '{
    "start_image_url": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-start.webp",
    "end_image_url": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-end.webp",
    "prompt": "He grips the rope tightly on the dock, then moves beside the boat as the camera follows in one continuous shot. Soft harbor water and distant gulls."
  }'

modelApiDoc_h2Authentication

modelApiDoc_authP1 YOUR_API_TOKEN modelApiDoc_authP2 modelApiDoc_profilemodelApiDoc_authP3 Authorization modelApiDoc_authP4 Authorization: Bearer $YOUR_API_TOKENmodelApiDoc_authP5

modelApiDoc_h3ApiReference

modelApiDoc_h3SubmitRequest

modelApiDoc_submitBody

curl --request POST \
  --url https://model-api.runcomfy.net/v1/models/blackforestlabs/flux-3/first-last-frame-to-video \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer <token>" \
  --data '{
    "start_image_url": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-start.webp",
    "end_image_url": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-end.webp",
    "prompt": "He grips the rope tightly on the dock, then moves beside the boat as the camera follows in one continuous shot. Soft harbor water and distant gulls."
  }'

modelApiDoc_h3MonitorStatus

modelApiDoc_monitorBody

curl --request GET \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/status \
  --header "Authorization: Bearer <token>"

modelApiDoc_h3RetrieveResults

modelApiDoc_retrieveBody

curl --request GET \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/result \
  --header "Authorization: Bearer <token>"

modelApiDoc_h3CancelRequest

modelApiDoc_cancelBody

curl --request POST \
  --url https://model-api.runcomfy.net/v1/requests/{request_id}/cancel \
  --header "Authorization: Bearer <token>"

modelApiDoc_h2FileInputs

modelApiDoc_h3HostedFile

modelApiDoc_hostedFileBody

modelApiDoc_h2Schema

modelApiDoc_h3InputSchema

{
  "type": "object",
  "title": "modelApiDoc_navInputSchema",
  "required": [
    "start_image_url",
    "end_image_url",
    "prompt"
  ],
  "properties": {
    "start_image_url": {
      "title": "URL de imagen inicial",
      "description": "URL de la imagen usada como primer fotograma del vídeo (PNG, JPEG o WebP).",
      "type": "string",
      "default": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-start.webp"
    },
    "end_image_url": {
      "title": "URL de imagen final",
      "description": "URL de la imagen usada como último fotograma del vídeo (PNG, JPEG o WebP).",
      "type": "string",
      "default": "https://playgrounds-storage-public.runcomfy.net/tools/7398/media-files/ref-promo-end.webp"
    },
    "prompt": {
      "title": "Prompt",
      "description": "Texto que describe el vídeo que quieres generar.",
      "type": "string",
      "default": "He grips the rope tightly on the dock, then moves beside the boat as the camera follows in one continuous shot. Soft harbor water and distant gulls."
    },
    "aspect_ratio": {
      "title": "Relación de aspecto",
      "description": "Relación de aspecto del vídeo generado. auto deja que el modelo elija.",
      "type": "string",
      "enum": [
        "auto",
        "21:9",
        "2:1",
        "16:9",
        "4:3",
        "1:1",
        "3:4",
        "9:16"
      ],
      "default": "16:9"
    },
    "resolution": {
      "title": "Resolución",
      "description": "Resolución del vídeo generado.",
      "type": "string",
      "enum": [
        "720p",
        "1080p"
      ],
      "default": "720p"
    },
    "duration": {
      "title": "Duración",
      "description": "Duración del vídeo generado en segundos. Se necesita una duración explícita para colocar el fotograma final.",
      "type": "integer",
      "enum": [
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20
      ],
      "default": 5
    },
    "generate_audio": {
      "title": "Generar audio",
      "description": "Si se debe generar audio sincronizado para el vídeo.",
      "type": "boolean",
      "default": true
    },
    "safety_tolerance": {
      "title": "Tolerancia de seguridad",
      "description": "Nivel de tolerancia de seguridad del vídeo generado. 0 es el más estricto y 4 el más permisivo.",
      "type": "integer",
      "minimum": 0,
      "maximum": 4,
      "default": 2
    }
  }
}

modelApiDoc_h3OutputSchema

{
  "output": {
    "type": "object",
    "properties": {
      "image": {
        "type": "string",
        "format": "uri",
        "description": "modelApiDoc_outDescImage"
      },
      "video": {
        "type": "string",
        "format": "uri",
        "description": "modelApiDoc_outDescVideo"
      },
      "images": {
        "type": "array",
        "description": "modelApiDoc_outDescImages",
        "items": {
          "type": "string",
          "format": "uri"
        }
      },
      "videos": {
        "type": "array",
        "description": "modelApiDoc_outDescVideos",
        "items": {
          "type": "string",
          "format": "uri"
        }
      }
    }
  }
}
Follow us
  • LinkedIn
  • Facebook
  • Instagram
  • Twitter
Support
  • Discord
  • Email
  • System Status
  • Affiliate
Video Models
  • MiniMax H3
  • Minimax H3 Image to Video
  • FLUX 3 Video
  • Happy Horse 1.1 reference to video
  • Wan 2.6 Flash
  • Hailuo 2.3 Fast Standard
  • View All Models →
Image Models
  • FLUX 3 Image
  • Seedream 5.0 Pro Image Edit
  • Flux 2 Flash Edit
  • seedream 4.0
  • GPT Image 2 Image Edit
  • Nano Banana Pro
  • View All Models →
Legal
  • Terms of Service
  • Privacy Policy
  • Cookie Policy
RunComfy
Copyright 2026 RunComfy. All Rights Reserved.

RunComfy is the premier ComfyUI platform, offering ComfyUI online environment and services, along with ComfyUI workflows featuring stunning visuals. RunComfy also provides AI Models, enabling artists to harness the latest AI tools to create incredible art.