Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.gmicloud.ai/llms.txt

Use this file to discover all available pages before exploring further.

Model ID
kling-create-element

Kling Create Element

Create custom elements (characters, animals, items, costumes, scenes, effects) from reference images or videos. These elements can then be used in Kling video generation models to maintain consistent character and object appearances across generations.

Reference Methods:

  • Image Reference: Provide a frontal image plus 1-3 additional reference images from different angles
  • Video Reference: Provide a single reference video (3-8 seconds, 1080P, 16:9 or 9:16). Audio videos with human voice will trigger voice customization.

Supported Element Types:

API Usage

Submit a generation task via the GMI request queue. Polling and full parameter docs are in the API reference.

Submit request

curl -X POST "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests" \
  -H "Authorization: Bearer $GMI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kling-create-element",
    "payload": {
      "prompt": "your prompt here"
    }
  }'
The response includes a request_id. Poll the status endpoint until the video is ready, then download from the returned URL.
curl "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests/<request_id>" \
  -H "Authorization: Bearer $GMI_API_KEY"