Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Colossyan's API is using Bearer Authentication. This means, that every request has to be authenticated by sending the token in the Authorization
header pre-pended by the text Bearer
. See the example below:
You can create or find your existing tokens at the bottom of the Workspace details tab in the Settings page.
Colossyan's API offers a programmable video creation service. It allows you to generate videos at scale. To facilitate this, we provide a REST API using standard JSON as request and response payload format. This way you can integrate our service into any technology stack.
💬 Over 600 voices
🌐 Over 70 languages
👄 Use any actor of your choice
👤 Create your own avatars through the API, and use them at your will
📹 Everything that you can generate in the Colossyan Studio you can also generate via our API
🖼️ Embedded images
Generate template videos at a massive scale, easily
Embedded videos
Embedded audios
Embedded texts
Get notified immediately via a callback mechanism
Thanks to our web-based templating and payload exporting options it's incredibly easy to get up-n-running.
Grab your token as described in the page.
Getting Started
Create your first video
Basics
Learn the basics of our API
There are multiple ways to generate a video.
You can generate a video based on a template (that you create). In this case you only send us a reference to the template and a list of dynamic variables that you'd like us to replace in the template. See more here: Generating using a template
You can generate a video, by sending a whole video-generation-job descriptor JSON to our API. See more here: Generating a video manually
Once a video generation has been triggered, you have multiple options to get notified once it's ready. See more here: Receiving a generated video
Constructing request bodies for complex video generation jobs can become very complicated very quickly. To get ahead of this we provide a way to use our web-based video-generation tool (Colossyan Studio) to export the payload for the video you see.
To do this, open any draft you'd like to generate via the API.
Click on the "Generate" button on the top right corner of your editor, than in the dialog appeared you should see a button called "Export to API", click that button.
Note that you can only see this button if you have API access.
In the appearing modal, you should see the request body that you can send to generate the exact video that you can see in the editor.
Feel free to customise this payload.
To generate a video based on a template:
Head over to Colossyan and create your desired video draft using our web-based studio
Once you are done, click on the "Generate" button on the top right corner of your editor, than in the dialog appeared click "Export to API"
On the top right corner of the appearing dialog click "Save job as a template" and make note of the appearing ID. This is the ID of your template job, you can send this id with your request to start generate the video.
Keep in mind: the template job ID refers to the state of the draft when you saved it. If later you edit this draft, you'll need to create another template id to represent the changes.
Now you have everything to send us a video generation request using the API endpoint below.
Note that this button is only visible if you have a plan which has access to the API. For more information, head over to our
You can create dynamic template variables in the script on any scene, by simply typing a variable name between curly braces at any point of the script.
For example in the following script...
,,,
Dear {name}, I have seen that you haven't logged into your account for the past two months. Should we catch up quickly? Since then we released several cool stuff, such as {cool_stuff_1} and {cool_stuff_2}. Let me know if you have a free slot on your calendar next week!
,,,
...you have created three dynamic variables:
name
cool_stuff_1
cool_stuff_2
You can replace these template variables with their values, by sending their values in the request body when generating a video. The API will replace the placeholders in the script with the corresponding values you provide.
For example:
On how to generate a video you can find more information here: Video Generation
You can generate a video by sending us a video-generation-job descriptor JSON. This is essentially a recipe for a video. Constructing such a recipe manually for complex videos can become tedious very quickly. Due to this we strongly recommend to either:
Extract the video-generation-job payload from our web-based UI editor. More details here: Extracting request bodies from the web-editor
Or to generate based on a template. More details here: Generating using a template
To better understand the API, it's recommended to get an understanding of the following building blocks first:
Scenes
A scene is a logical consolidation of related content.
A video can consist of multiple scenes. These scenes are concatenated together. Think of them as slides on a presentation. Each scene is meant to aggregate and encapsulate related content.
Scenes offer a lot of convenience in timing their content, however it is completely up to the individual to decide how to divide the content into scenes.
Tracks
Tracks are the building blocks of scenes. You define the content of the video in tracks.
There are different types of tracks, for different purposes. To differentiate between them we use the type
property.
Here you can see the details of the endpoint below.
Upon posting a new video generation job, you have the opportunity to add a callback
and some callbackPayload
to the job. When the job is successful our service will issue a POST request to the url you provided in the callback
field.
In the body of this post message, we add the following fields:
url
Contains the public url of the generated video file.
videoUrl
and shareUrl
Contains a unique url pointing at Colossyans video sharing platform.
status
The status of the video generation. Can either be finished
or failed
...and everything that was provided at the job's generation as callbackPayload
and dynamicVariables
.
Due to the asynchronous nature of video-generations, first you need to query the video-generation-job itself, to see the status of it. To do this, use the API below.
Continue to poll the status of the job, until it returns either finished
or failed
. In case it successfully finished generating use the API below to get the generated video.
You can get the videoId
both when queueing the job itself, or when fetching it's status.
An example of a script to poll a job can be found below:
Open Colossyan
Navigate to workspace in which the API key was used to generate the video
Open the generated videos page.
The video should be listed there
You should also see it if it's currently being generated. In this case, it'll show the status of the job.
Dynamic template variables are placeholders within your video script or scene text element that can be replaced with different values each time a video is generated.
They allow you to customize content dynamically without modifying the base template.
Learn more on the following pages on how to use them:
Using the API, you can list the following assets:
Stable features
Experimental features
You can use dynamic template variables in any text element, by simply typing a variable name between curly braces.
Take the following example:
,,,
Hey {name}, we’ve been improving!
Our newest feature, {feature_name}, is live!
,,,
In this text we created two template variables: name
and feature_name
.
You can replace these template variables with their values, by sending their values in the request body when generating a video. The API will replace the placeholders in the text with the corresponding values you provide.
For example:
On how to generate a video you can find more information here: Video Generation
Submits a new video generation job using a template
The ID of the template job.
Dynamic variables to be loaded into the template.
URL for the callback after job completion.
Callback payload to return with the generated video once it's ready.
You can set the duration of each scene in three different ways. In either case no matter how long the duration of the tracks within the scene are, everything longer than the scene itself will be cut out.
You can explicitly define the scene's duration in milliseconds by setting the duration
property on it.
If you would like your scene to be exactly as long as one of the tracks in it, you can do so by referring to the track on the scene. In this case Colossyan will try to figure out the length of the track in isolation first, and if it can do so, it'll assign the same duration to the scene itself.
Use the intrinsicDurationTrackReference
property in the scene to refer to the referenceId
of the track you would like the scene to have an equal duration with.
Combining this technique with timing the tracks by referring to the scene's start and end time is a very powerful combination, that allows you to achieve intricate videos with the flexibility of handing varying track lengths.
If you do not explicitly set the duration, nor refer to a track within the scene, Colossyan will try to infer the best guess for the duration of the scene by looking at the tracks, and trying to find a single one with either an intrinsic or explicitly set duration.
This is only possible if there is only one track in the scene with a default or explicitly set duration. Otherwise Colossyan will throw a schema validation error, when queueing the job.
Track duration can be set in three different ways. No matter which way you chose, if the scene is shorter, the track will be cut to fit it.
If however the track you provided does not last long enough to reach the duration defined by you (for example a video ends earlier, or the actor finishes speaking), the track will disappear earlier than you defined.
Similarly to setting a scene's explicit duration, you can set the duration of a track by setting the duration
property on it. The duration should be set in milliseconds.
You can set the track to start after a certain amount of time has passed since the beginning of the scene, and to last until a certain amount of time before the end of the scene. By setting both of these variables, you are essentially defining the duration of the track as well.
You can define these gaps from the start and end of the scene by setting the startTimeGap
and the endTimeGap
properties on the track.
If you do not define the duration of the track in any way, Colossyan will try to fall back to the intrinsic duration of the track if there is any.
Only video and actor tracks have intrinsic durations.
In case of a video track the intrinsic duration equals the duration of the video itself.
In case of an actor track the intrinsic duration equals the duration of the lipsynched video of the actor speaking.
To time when the track should start or end within the scene, you can use the startTimeGap
or the endTimeGap
properties on the track.
Use startTimeGap
and endTimeGap
to make videos that work well for dynamic content.
Refer to the track's duration in scenes to deal with dynamic track lengths.
Do not over-constrain the timing of your scenes and tracks. This will yield in a schema validation error.
In general, we always recommend to generate videos either by:
If for some reason either of these options wouldn't be enough to achieve what you are after, in the following pages you can read about some advanced concepts, when working with our API.
Experimental endpoints are not yet finalised. They can change at any point, without notice. To reflect this, these endpoints are not available on the /v1/
endpoint (See more here: )
Extracting the video-generation-job payload from our web-based UI editor. More details here: .
Or by
Submits a new video generation job for processing.
Dynamic variables to be loaded into the template.
URL for the callback.
Payload for the callback.
The video creative details.