When you want to automate this

A video for every car on the lot.

1
See it
OutputMP4
Size1280 × 720 (16:9)
Length13s
Frame rate25 fps
Tracks / clips13 / 14
Assets used1 audio, 10 rich-text, 3 video
Soundtrackno
Merge fields9
2
Make it yours

Send a merge array with your values for these fields:

FieldDefault value
{{ VIDEO_1 }}https://templates.shotstack.io/car-walkaround-video/4a3d3300-978e-4866-8731-b0d599750804/zzy8fyga-3vug-j70r-d9dq-1mcafm4ja3gw.mp4
{{ VIDEO_2 }}https://templates.shotstack.io/car-walkaround-video/82a75800-8e89-4af2-a69f-26508b987521/zzy8fyer-2ol4-r14y-l7mh-1zwhyh1oz99v.mp4
{{ VIDEO_3 }}https://templates.shotstack.io/car-walkaround-video/5ce03652-08cc-410d-a8d2-cf5ecf966ec3/zzy8fyca-45mv-6t3s-97kd-1lkwn54l381c.mp4
{{ MAKE }}Lamborghini
{{ MODEL }}Huracan EVO Auto AWD
{{ YEAR }}2023
{{ SPECS }}10CYL 5.2L PETROL
{{ ODOMETER }}17,100
{{ CONTACT }}DEAN @ 703-438-5736
Edit and save to your account
3
Run it once

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 --watch

Sandbox renders are free and watermarked. Production: the v1 endpoint and key. SDKs

4
Automate it

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 9 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

Common questions

How do I change the text and media without editing the JSON?

Use the 9 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.

Can I render this in full HD or 4K for YouTube?

Yes. This template renders 1280×720 by default. Set output.resolution to "1080" or output.size to a larger 16:9 size in the JSON; the layout scales with it.

Can I swap the footage for my own video?

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.

How do I change the text and fonts?

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.