{
"timeline": {
"soundtrack": {
"src": "https://templates.shotstack.io/best-car-for-sale/c0af7541-8b06-4d1d-9b48-6257d6bea38d/kring.mp3",
"effect": "fadeOut"
},
"fonts": [
{
"src": "https://templates.shotstack.io/best-car-for-sale/33574aba-06d5-4302-8287-07a7731f069d/source.ttf"
},
{
"src": "https://templates.shotstack.io/best-car-for-sale/a88919b1-982e-44ef-a23f-b377b3285906/source.ttf"
}
],
"background": "#ffffff",
"tracks": [
{
"clips": [
{
"asset": {
"type": "rich-text",
"text": "Upgrade your wheels today.\nWon't be in stock for long.",
"font": {
"family": "Roboto Medium",
"size": 41,
"weight": 500,
"color": "#373737",
"opacity": 1
},
"style": {
"letterSpacing": 0,
"wordSpacing": 0,
"lineHeight": 1.2,
"textTransform": "none",
"textDecoration": "none"
},
"align": {
"horizontal": "left",
"vertical": "middle"
},
"animation": {
"preset": "slideIn",
"direction": "right",
"style": "word"
}
},
"start": 0.28,
"fit": "none",
"scale": 1,
"offset": {
"x": -0.272,
"y": 0.104
},
"position": "center",
"transition": {
"in": "slideRight"
},
"length": 9.72,
"width": 537,
"height": 124
}
]
},
{
"clips": [
{
"asset": {
"type": "rich-text",
"text": "FOR SALE",
"font": {
"family": "Roboto Black",
"size": 164,
"weight": 900,
"color": "#2793cd",
"opacity": 1
},
"style": {
"letterSpacing": 0,
"wordSpacing": 0,
"lineHeight": 1.2,
"textTransform": "none",
"textDecoration": "none"
},
"align": {
"horizontal": "left",
"vertical": "middle"
},
"animation": {
"preset": "slideIn",
"direction": "right",
"style": "word"
}
},
"start": 0,
"fit": "none",
"scale": 1,
"offset": {
"x": -0.167,
"y": 0.224
},
"position": "center",
"length": 10,
"transition": {
"in": "carouselRight"
},
"width": 950,
"height": 160
}
]
},
{
"clips": [
{
"asset": {
"type": "rich-text",
"text": "BEST CAR",
"font": {
"family": "Roboto Medium",
"size": 188,
"weight": 500,
"color": "#121212",
"opacity": 1
},
"style": {
"letterSpacing": 0,
"wordSpacing": 0,
"lineHeight": 1.2,
"textTransform": "none",
"textDecoration": "none"
},
"align": {
"horizontal": "left",
"vertical": "middle"
},
"animation": {
"preset": "slideIn",
"style": "word",
"direction": "right"
}
},
"start": 0,
"fit": "none",
"scale": 1,
"offset": {
"x": -0.179,
"y": 0.362
},
"position": "center",
"length": 10,
"transition": {
"in": "carouselDown"
},
"width": 917,
"height": 172
}
]
},
{
"clips": [
{
"asset": {
"type": "image",
"src": "{{ IMAGE }}"
},
"start": 0,
"offset": {
"x": 0.08039583333333333,
"y": -0.1877367184331532
},
"position": "center",
"length": 10,
"effect": "zoomInSlow",
"transition": {
"in": "carouselLeft"
},
"scale": 1,
"fit": "contain",
"width": 1224,
"height": 938
}
]
},
{
"clips": [
{
"asset": {
"type": "video",
"src": "https://templates.shotstack.io/best-car-for-sale/b507cd63-e6ab-42fc-b44b-00787017224c/source.mp4",
"volume": 1
},
"start": 0,
"length": 10,
"offset": {
"x": 0,
"y": 0
},
"position": "center",
"scale": 1,
"width": 1920,
"height": 1080,
"fit": "contain"
}
]
}
]
},
"output": {
"format": "mp4",
"size": {
"width": 1920,
"height": 1080
},
"destinations": [
{
"provider": "shotstack"
}
]
},
"merge": [
{
"find": "IMAGE",
"replace": "https://templates.shotstack.io/best-car-for-sale/6c46dfdc-38ec-47a5-a799-07afca67adf6/source.png"
}
]
}A dynamic car advertisement video template featuring a single, customizable image merge field, perfect for showcasing any vehicle, from sporty convertibles to practical family cars. The focus is on a clean, elegant presentation, with the chosen car image brought to life through subtle motion effects. Ideal for dealerships, private sellers, or automotive listing sites, this template can be used as the starting point to create a simple car promo video.
No account needed until you render.
Render with your AI assistant
Add the Shotstack MCP server to your editor, then paste the prompt
| Output | MP4 |
|---|---|
| Size | 1920 × 1080 (16:9) |
| Length | 10s |
| Frame rate | default (25 fps) |
| Tracks / clips | 5 / 5 |
| Assets used | 1 image, 3 rich-text, 1 video |
| Soundtrack | yes |
| Merge fields | 1 |
Send a merge array with your values for these fields:
| Field | Default value |
|---|---|
{{ IMAGE }} | https://templates.shotstack.io/best-car-for-sale/6c46dfdc-38ec-47a5-a799-07afca67adf6/source.png |
Save the JSON above as template.json, then render in the free sandbox:
# Save the JSON above as template.json, then:
curl -X POST https://api.shotstack.io/edit/stage/render \
-H "x-api-key: $SHOTSTACK_API_KEY" \
-H "Content-Type: application/json" \
-d @template.json
# Poll until status is "done", then download response.url
curl https://api.shotstack.io/edit/stage/render/RENDER_ID -H "x-api-key: $SHOTSTACK_API_KEY"import { readFileSync } from 'node:fs';
const headers = { 'x-api-key': process.env.SHOTSTACK_API_KEY, 'Content-Type': 'application/json' };
const edit = JSON.parse(readFileSync('template.json', 'utf8'));
const { response } = await fetch('https://api.shotstack.io/edit/stage/render', {
method: 'POST', headers, body: JSON.stringify(edit)
}).then((r) => r.json());
let render;
do {
await new Promise((r) => setTimeout(r, 3000));
render = (await fetch(`https://api.shotstack.io/edit/stage/render/${response.id}`, { headers }).then((r) => r.json())).response;
} while (!['done', 'failed'].includes(render.status));
console.log(render.status, render.url);import json, os, time, requests
headers = {"x-api-key": os.environ["SHOTSTACK_API_KEY"]}
with open("template.json") as f:
edit = json.load(f)
render_id = requests.post("https://api.shotstack.io/edit/stage/render", json=edit, headers=headers).json()["response"]["id"]
while True:
render = requests.get(f"https://api.shotstack.io/edit/stage/render/{render_id}", headers=headers).json()["response"]
if render["status"] in ("done", "failed"):
break
time.sleep(3)
print(render["status"], render.get("url"))npm install -g @shotstack/cli
export SHOTSTACK_API_KEY=your_sandbox_key
shotstack validate template.json # offline schema check, free
shotstack render template.json --env stage --watchSandbox renders are free and watermarked. Production: the v1 endpoint and key. SDKs
Point it at your inventory feed and each vehicle gets its own video as soon as it is listed.
Paste into Claude, ChatGPT or Cursor — your AI assistant builds the workflow around your data.
Node.js, one render per CSV row, wired to this template's 1 merge fields. Setup steps in the header.
Guides: Bulk-create from a CSV · Webhooks · Templates endpoint · Render your first video
AI assistants: Markdown () · · · CLI skill: SKILL.md () · MCP server
Use the 1 merge fields listed above. Send a merge array with your own values for each field and the API swaps them in at render time, so one template can produce thousands of unique videos.
Yes. This template renders 1920×1080 by default. Set output.resolution to "1080" or output.size to a larger 16:9 size in the JSON; the layout scales with it.
Yes. Replace the video asset's src with a public URL of your file (MP4 works best). Use trim and length on the clip to pick the part you want, and the template's effects apply to your footage.
Edit the text on each rich-text asset in the JSON. Fonts come from the timeline fonts list or the asset's font family; add your own font file URL to timeline.fonts to use a brand typeface.