When you want to automate this

One video per row of your data.

1
See it
OutputMP4
Size1080 × 1350 (4:5)
Length5.5s
Frame rate25 fps
Tracks / clips16 / 17
Assets used1 audio, 2 image, 1 luma, 13 text
Soundtrackno
Merge fields17
2
Make it yours

Send a merge array with your values for these fields:

FieldDefault value
{{ logo }}https://templates.shotstack.io/bogo-special-offer-promo-template-sale/cfe14dad-9988-4b2f-9bf1-fc9beba459a4/source.png
{{ Logo_name }}Musestudio
{{ Code_border }}#050505
{{ Voucher }}CODE: H9MW4
{{ S1_Title_1 }}Grab 1 Enjoy 1
{{ S1_Title_2 }}FREE
{{ Body }}From vibrant tambourines to elegant accents and everything in between, we’re here to bring rhythm and style to your home—without missing a beat or your budget
{{ IMAGE_SRC }}https://templates.shotstack.io/bogo-special-offer-promo-template-sale/4171d0e5-67f2-4bfa-a437-c0a709c8d135/source.png
{{ Price }}$300
{{ CTA_1 }}BUY NOW
{{ CTA_2 }}Limited-Time Offer.
{{ Web }}www.musetensite.com
{{ Body_FONT_COLOR }}#124f91
{{ Title_2_COLOR }}#ac590c
{{ Title_1_COLOR }}#5f3207
{{ BACKGROUND_COLOR }}#ffffff
{{ AUDIO_SRC }}https://templates.shotstack.io/bogo-special-offer-promo-template-sale/c93a264f-47b4-4d97-a01f-7fd936745940/source.mp3
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

One render is a demo. A video for every row of your data is the workflow.

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 17 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 17 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 use my own photos?

Yes. The template uses 2 images; replace each image asset's src with a public URL of your own file (JPG, PNG or WebP). Keep the timing and effects, or adjust them per clip.

How do I change the text and fonts?

Edit the text on each 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.

What is the luma matte used for?

A luma asset masks the track above it: light areas of the matte show that track, dark areas hide it. This template uses it for its reveal effect; swap the matte video to change the shape of the reveal.