Skip to main content
POST
/
api
/
generate
/
video
cURL
curl --request POST \
  --url https://clipcrea.com/api/generate/video \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "video": {
    "format": "landscape",
    "sequences": [
      {
        "order": 123,
        "duration": 123,
        "medias": [
          {
            "url": "<string>",
            "start": 123,
            "end": 123,
            "order": 123,
            "selected": true,
            "data": {}
          }
        ],
        "type": "intro",
        "animationType": "CAMERA_PUSH_IN",
        "data": {}
      }
    ],
    "displayLogo": true,
    "music": "<string>",
    "font": "<string>",
    "template": "SaleProperty",
    "logoUrl": "<string>",
    "colors": [
      "<string>"
    ]
  }
}
'
{
  "id": "<string>",
  "generatedContent": [
    {
      "id": "<string>",
      "url": "<string>",
      "effect": "<string>",
      "format": "<string>",
      "status": "pending"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Body

application/json
video
object
required

Response

Video generation started successfully

id
string
generatedContent
object[]