When you want to automate this

One video per row of your data.

1
See it
OutputMP4
Size1920 × 1080 (16:9)
Length70s
Frame rate25 fps
Tracks / clips8 / 71
Assets used32 rich-text, 39 video
Soundtrackyes
Merge fields31
2
Make it yours

Send a merge array with your values for these fields:

FieldDefault value
{{ TITLE }}TOP 10 TOURIST SPOTS IN EUROPE
{{ 1_TOP }}EIFFEL TOWER
{{ 1_BOTTOM }}PARIS, FRANCE
{{ 2_TOP }}THE COLOSSEUM
{{ 2_BOTTOM }}ROME, ITALY
{{ 3_TOP }}LOUVRE MUSEUM
{{ 3_BOTTOM }}PARIS, FRANCE
{{ 4_TOP }}BUCKINGHAM PALACE
{{ 4_BOTTOM }}LONDON, UNITED KINGDOM
{{ 5_TOP }}VATICAN CITY
{{ 5_BOTTOM }}VATICAN CITY
{{ 6_TOP }}THE ACROPOLIS
{{ 6_BOTTOM }}ATHENS, GREECE
{{ 7_TOP }}LAKE GENEVA
{{ 7_BOTTOM }}GENEVA, SWITZERLAND
{{ 8_TOP }}NEUSCHWANSTEIN CASTLE
{{ 8_BOTTOM }}SCHWANGAU, GERMANY
{{ 9_TOP }}CHARLES BRIDGE
{{ 9_BOTTOM }}PRAGUE, CZECH REPUBLIC
{{ 10_TOP }}VENICE GRAND CANAL
{{ 10_BOTTOM }}VENICE, ITALY
{{ VIDEO_1 }}https://templates.shotstack.io/top-10-tourism-listicle/a24efec9-2b88-4042-9933-61da86770ed2/source.mp4
{{ VIDEO_2 }}https://templates.shotstack.io/top-10-tourism-listicle/51266ae1-69df-429f-a0c2-dfc4c44a1485/source.mp4
{{ VIDEO_3 }}https://templates.shotstack.io/top-10-tourism-listicle/b3bac1a3-88e6-4442-83ad-45819dc11f7b/source.mp4
{{ VIDEO_4 }}https://templates.shotstack.io/top-10-tourism-listicle/4ccfde25-b5b8-45b8-98e0-839904b283c2/source.mp4
{{ VIDEO_5 }}https://templates.shotstack.io/top-10-tourism-listicle/c90b8a2f-9b22-4d7f-bd86-882c72207a27/source.mp4
{{ VIDEO_6 }}https://templates.shotstack.io/top-10-tourism-listicle/eb1c167b-d1e0-42b6-a25c-8a635e500fe6/source.mp4
{{ VIDEO_7 }}https://templates.shotstack.io/top-10-tourism-listicle/31f96075-44cd-4234-aaf2-21dfa1564c13/source.mp4
{{ VIDEO_8 }}https://templates.shotstack.io/top-10-tourism-listicle/87cdf62c-361d-49a9-976b-93273fb45163/source.mp4
{{ VIDEO_9 }}https://templates.shotstack.io/top-10-tourism-listicle/6bae63ae-aadc-4178-b3af-724087a3a893/source.mp4
{{ VIDEO_10 }}https://templates.shotstack.io/top-10-tourism-listicle/a3b228e9-50d9-4480-a293-fdee6cd1c48c/source.mp4
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 31 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 31 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 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.

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.