template gallery and adapt it to your needs.
Take a look at the video below to get a close look at what this looks like:
The ability to edit using JSON is only the first part of the interface we have planned.
Over the coming months we will provide you with a drag and drop GUI, the ability to save templates and load them from the API, and no-code applications.
We’ll focus on making the experience as developer and designer friendly as we can. We welcome your feedback if you have any difficulties or want to make a feature request.
Talk to us in the commmunity forum and stay tuned for future updates.
curl --request POST 'https://api.shotstack.io/v1/render' \
--header 'x-api-key: YOUR_API_KEY' \
--data-raw '{
"timeline": {
"tracks": [
{
"clips": [
{
"asset": {
"type": "video",
"src": "https://shotstack-assets.s3.amazonaws.com/footage/beach-overhead.mp4"
},
"start": 0,
"length": "auto"
}
]
}
]
},
"output": {
"format": "mp4",
"size": {
"width": 1280,
"height": 720
}
}
}'