> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apimart.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Generación de Video Kling 2.6

>  - Modo de procesamiento asíncrono, devuelve un ID de tarea para consultas posteriores
- Soporta text-to-video, image-to-video (control de primer fotograma / primer-último fotograma)
- Soporta modo estándar (720P) y modo profesional (1080P)
- El modo profesional admite generación automática de audio y selección de voz 

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://api.apimart.ai/v1/videos/generations \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "kling-v2-6",
      "prompt": "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
      "mode": "std",
      "duration": 5,
      "aspect_ratio": "16:9"
    }'
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.apimart.ai/v1/videos/generations"

  payload = {
      "model": "kling-v2-6",
      "prompt": "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
      "mode": "std",
      "duration": 5,
      "aspect_ratio": "16:9"
  }

  headers = {
      "Authorization": "Bearer <token>",
      "Content-Type": "application/json"
  }

  response = requests.post(url, json=payload, headers=headers)

  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const url = "https://api.apimart.ai/v1/videos/generations";

  const payload = {
    model: "kling-v2-6",
    prompt: "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
    mode: "std",
    duration: 5,
    aspect_ratio: "16:9"
  };

  const headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
  };

  fetch(url, {
    method: "POST",
    headers: headers,
    body: JSON.stringify(payload)
  })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
  ```

  ```go Go theme={null}
  package main

  import (
      "bytes"
      "encoding/json"
      "fmt"
      "io/ioutil"
      "net/http"
  )

  func main() {
      url := "https://api.apimart.ai/v1/videos/generations"

      payload := map[string]interface{}{
          "model":        "kling-v2-6",
          "prompt":       "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
          "mode":         "std",
          "duration":     5,
          "aspect_ratio": "16:9",
      }

      jsonData, _ := json.Marshal(payload)

      req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
      req.Header.Set("Authorization", "Bearer <token>")
      req.Header.Set("Content-Type", "application/json")

      client := &http.Client{}
      resp, err := client.Do(req)
      if err != nil {
          panic(err)
      }
      defer resp.Body.Close()

      body, _ := ioutil.ReadAll(resp.Body)
      fmt.Println(string(body))
  }
  ```

  ```java Java theme={null}
  import java.net.http.HttpClient;
  import java.net.http.HttpRequest;
  import java.net.http.HttpResponse;
  import java.net.URI;

  public class Main {
      public static void main(String[] args) throws Exception {
          String url = "https://api.apimart.ai/v1/videos/generations";

          String payload = """
          {
            "model": "kling-v2-6",
            "prompt": "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
            "mode": "std",
            "duration": 5,
            "aspect_ratio": "16:9"
          }
          """;

          HttpClient client = HttpClient.newHttpClient();
          HttpRequest request = HttpRequest.newBuilder()
              .uri(URI.create(url))
              .header("Authorization", "Bearer <token>")
              .header("Content-Type", "application/json")
              .POST(HttpRequest.BodyPublishers.ofString(payload))
              .build();

          HttpResponse<String> response = client.send(request,
              HttpResponse.BodyHandlers.ofString());

          System.out.println(response.body());
      }
  }
  ```

  ```php PHP theme={null}
  <?php

  $url = "https://api.apimart.ai/v1/videos/generations";

  $payload = [
      "model" => "kling-v2-6",
      "prompt" => "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
      "mode" => "std",
      "duration" => 5,
      "aspect_ratio" => "16:9"
  ];

  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
  curl_setopt($ch, CURLOPT_HTTPHEADER, [
      "Authorization: Bearer <token>",
      "Content-Type: application/json"
  ]);

  $response = curl_exec($ch);
  curl_close($ch);

  echo $response;
  ?>
  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'json'
  require 'uri'

  url = URI("https://api.apimart.ai/v1/videos/generations")

  payload = {
    model: "kling-v2-6",
    prompt: "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
    mode: "std",
    duration: 5,
    aspect_ratio: "16:9"
  }

  http = Net::HTTP.new(url.host, url.port)
  http.use_ssl = true

  request = Net::HTTP::Post.new(url)
  request["Authorization"] = "Bearer <token>"
  request["Content-Type"] = "application/json"
  request.body = payload.to_json

  response = http.request(request)
  puts response.body
  ```

  ```swift Swift theme={null}
  import Foundation

  let url = URL(string: "https://api.apimart.ai/v1/videos/generations")!

  let payload: [String: Any] = [
      "model": "kling-v2-6",
      "prompt": "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
      "mode": "std",
      "duration": 5,
      "aspect_ratio": "16:9"
  ]

  var request = URLRequest(url: url)
  request.httpMethod = "POST"
  request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
  request.setValue("application/json", forHTTPHeaderField: "Content-Type")
  request.httpBody = try? JSONSerialization.data(withJSONObject: payload)

  let task = URLSession.shared.dataTask(with: request) { data, response, error in
      if let error = error {
          print("Error: \(error)")
          return
      }
      
      if let data = data, let responseString = String(data: data, encoding: .utf8) {
          print(responseString)
      }
  }

  task.resume()
  ```

  ```csharp C# theme={null}
  using System;
  using System.Net.Http;
  using System.Text;
  using System.Threading.Tasks;

  class Program
  {
      static async Task Main(string[] args)
      {
          var url = "https://api.apimart.ai/v1/videos/generations";

          var payload = @"{
              ""model"": ""kling-v2-6"",
              ""prompt"": ""A golden cat running on a sunlit meadow, slow motion, cinematic quality"",
              ""mode"": ""std"",
              ""duration"": 5,
              ""aspect_ratio"": ""16:9""
          }";

          using var client = new HttpClient();
          client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");

          var content = new StringContent(payload, Encoding.UTF8, "application/json");
          var response = await client.PostAsync(url, content);
          var result = await response.Content.ReadAsStringAsync();

          Console.WriteLine(result);
      }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "code": 200,
    "data": [
      {
        "status": "submitted",
        "task_id": "task_xxxxxxxxxx"
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "error": {
      "code": 400,
      "message": "Invalid request parameters",
      "type": "invalid_request_error"
    }
  }
  ```

  ```json 401 theme={null}
  {
    "error": {
      "code": 401,
      "message": "Invalid authentication credentials",
      "type": "authentication_error"
    }
  }
  ```

  ```json 402 theme={null}
  {
    "error": {
      "code": 402,
      "message": "Insufficient balance. Please top up your account",
      "type": "payment_required"
    }
  }
  ```

  ```json 429 theme={null}
  {
    "error": {
      "code": 429,
      "message": "Rate limit exceeded. Please try again later",
      "type": "rate_limit_error"
    }
  }
  ```

  ```json 500 theme={null}
  {
    "error": {
      "code": 500,
      "message": "Internal server error. Please try again later",
      "type": "server_error"
    }
  }
  ```
</ResponseExample>

## Autorización

<ParamField header="Authorization" type="string" required>
  Todos los endpoints de la API requieren autenticación mediante Bearer Token

  Obtenga su API Key:

  Visite la [página de gestión de API Keys](https://apimart.ai/keys) para obtener su API Key

  Añádala al encabezado de la solicitud:

  ```
  Authorization: Bearer YOUR_API_KEY
  ```
</ParamField>

## Parámetros de la solicitud

<ParamField body="model" type="string" required>
  Nombre del modelo de generación de video

  Modelos soportados:

  * `kling-v2-6` - Kling v2.6 (recomendado)
</ParamField>

<ParamField body="prompt" type="string" required>
  Prompt de texto, máximo **2500 caracteres**

  Describa escenas, acciones y estilos en detalle para obtener mejores resultados

  Ejemplo: `"A golden cat running on a sunlit meadow, slow motion, cinematic quality"`
</ParamField>

<ParamField body="mode" type="string" default="std">
  Modo de generación

  Opciones:

  * `std` - Modo estándar (720P, solo video silencioso)
  * `pro` - Modo profesional (1080P, admite generación automática de audio)

  Por defecto: `std`

  <Warning>
    **Limitación del modo estándar**: el modo `std` solo admite video silencioso. El parámetro `audio` requiere el modo `pro`.
  </Warning>
</ParamField>

<ParamField body="duration" type="integer" default="5">
  Duración del video (segundos)

  Opciones: `5` o `10`

  Por defecto: `5`
</ParamField>

<ParamField body="aspect_ratio" type="string" default="16:9">
  Proporción de aspecto del video

  Opciones:

  * `16:9` - Paisaje
  * `9:16` - Retrato
  * `1:1` - Cuadrado

  Por defecto: `16:9`
</ParamField>

<ParamField body="negative_prompt" type="string">
  Prompt negativo para excluir contenido no deseado

  Ejemplo: `"blurry, low quality, distorted"`
</ParamField>

<ParamField body="image_urls" type="array<url>">
  Array de URLs de imágenes para generación image-to-video

  * Enviar **1 imagen**: usada como primer fotograma
  * Enviar **2 imágenes**: asignadas automáticamente como primer fotograma + último fotograma (requiere `mode: "pro"`)

  Máximo 2 imágenes admitidas

  Ejemplo: `["https://example.com/first.jpg"]`

  <Warning>
    * Máximo 2 imágenes admitidas
    * El último fotograma (2 imágenes) requiere únicamente el modo `pro`; el modo `std` solo admite primer fotograma (1 imagen)
    * **El último fotograma y el audio son mutuamente excluyentes**: en modo `pro`, el último fotograma (2 imágenes) y el audio (`audio: true`) no pueden usarse juntos
    * En modo image-to-video, `aspect_ratio` puede ser sobrescrito por la proporción real de la imagen
  </Warning>
</ParamField>

<ParamField body="audio" type="boolean" default="false">
  Si se debe generar audio automáticamente

  Por defecto: `false`

  <Warning>
    * Solo disponible en `mode: "pro"`
    * **Mutuamente excluyente con el último fotograma**: el audio no puede usarse junto con el último fotograma (2 imágenes)
  </Warning>
</ParamField>

<ParamField body="watermark" type="boolean">
  Si se debe añadir una marca de agua
</ParamField>

## Matriz de soporte de funciones

| Tipo           | Función          | std 5s              | std 10s             | pro 5s | pro 10s |
| -------------- | ---------------- | ------------------- | ------------------- | ------ | ------- |
| Text-to-Video  | Generación       | ✅ (solo silencioso) | ✅ (solo silencioso) | ✅      | ✅       |
| Text-to-Video  | Audio automático | -                   | -                   | ✅      | ✅       |
| Image-to-Video | Generación       | ✅ (solo silencioso) | ✅ (solo silencioso) | ✅      | ✅       |
| Image-to-Video | Primer fotograma | ✅                   | ✅                   | ✅      | ✅       |
| Image-to-Video | Último fotograma | -                   | -                   | ✅      | ✅       |
| Image-to-Video | Audio automático | -                   | -                   | ✅      | ✅       |

> **Nota**: En modo `pro`, el control de último fotograma y el de audio son mutuamente excluyentes y no pueden usarse juntos.

## Texto a video (Text-to-Video) vs Imagen a video (Image-to-Video)

El sistema determina automáticamente el modo según si se proporciona `image_urls`: sin imágenes significa text-to-video, con imágenes significa image-to-video.

| Parámetro         | Text-to-Video               | Image-to-Video                                                |
| ----------------- | --------------------------- | ------------------------------------------------------------- |
| `prompt`          | ✅ Obligatorio               | ✅ Obligatorio                                                 |
| `image_urls`      | ❌ No se usa                 | ✅ Obligatorio (1-2 imágenes, último fotograma requiere `pro`) |
| `negative_prompt` | ✅ Opcional                  | ✅ Opcional                                                    |
| `mode`            | ✅ Opcional                  | ✅ Opcional                                                    |
| `duration`        | ✅ Opcional                  | ✅ Opcional                                                    |
| `aspect_ratio`    | ✅ Opcional                  | ⚠️ Puede ser sobrescrito por la proporción de la imagen       |
| `audio`           | ✅ Opcional (requiere `pro`) | ✅ Opcional (requiere `pro`)                                   |
| `watermark`       | ✅ Opcional                  | ✅ Opcional                                                    |

## Respuesta

<ResponseField name="code" type="integer">
  Código de estado de la respuesta, 200 en caso de éxito
</ResponseField>

<ResponseField name="data" type="array">
  Array de datos de la respuesta

  <Expandable title="Elementos del array">
    <ResponseField name="status" type="string">
      Estado de la tarea, `submitted` al enviarse inicialmente
    </ResponseField>

    <ResponseField name="task_id" type="string">
      Identificador único de la tarea para consultar el estado y los resultados
    </ResponseField>
  </Expandable>
</ResponseField>

## Casos de uso

### Caso 1: Texto a video (modo estándar)

```json theme={null}
{
  "model": "kling-v2-6",
  "prompt": "A golden cat running on a sunlit meadow, slow motion, cinematic quality",
  "mode": "std",
  "duration": 5,
  "aspect_ratio": "16:9"
}
```

### Caso 2: Texto a video (modo Pro + prompt negativo)

```json theme={null}
{
  "model": "kling-v2-6",
  "prompt": "Tokyo Shibuya crossing at night, neon lights reflected on wet ground, people walking with umbrellas",
  "negative_prompt": "blurry, low quality, distorted",
  "mode": "pro",
  "duration": 10,
  "aspect_ratio": "16:9"
}
```

### Caso 3: Imagen a video (primer fotograma)

```json theme={null}
{
  "model": "kling-v2-6",
  "prompt": "The person in the frame turns and smiles",
  "image_urls": ["https://example.com/portrait.jpg"],
  "mode": "std",
  "duration": 5,
  "aspect_ratio": "16:9"
}
```

### Caso 4: Imagen a video (control de primer + último fotograma)

```json theme={null}
{
  "model": "kling-v2-6",
  "prompt": "City timelapse transitioning from day to night",
  "image_urls": ["https://example.com/day-city.jpg", "https://example.com/night-city.jpg"],
  "mode": "pro",
  "duration": 5
}
```

### Caso 5: Modo Pro + audio automático

```json theme={null}
{
  "model": "kling-v2-6",
  "prompt": "Waves crashing against rocks, seagulls circling in the sky, lighthouse in the distance",
  "mode": "pro",
  "duration": 10,
  "audio": true,
  "aspect_ratio": "16:9"
}
```

<Note>
  **Consultar resultados de la tarea**

  La generación de video es una tarea asíncrona que devuelve un `task_id` al enviarse. Use el endpoint [Obtener estado de la tarea](/es/api-reference/tasks/status) para consultar el progreso y los resultados de la generación.
</Note>
