When you want to automate this

One video per listing, automatically.

1
See it
OutputMP4
Size1080 × 1080 (1:1)
Length35s
Frame rate25 fps
Tracks / clips17 / 33
Assets used1 audio, 6 image, 1 luma, 24 text, 1 video
Soundtrackno
Merge fields31
2
Make it yours

Send a merge array with your values for these fields:

FieldDefault value
{{ TITLE }}Welcome to your
{{ DESCRIPTION }}VIRTUAL PROPERTY TOUR
{{ BRAND_NAME }}BORCELLE REAL ESTATE
{{ TEXT_FONT_COLOR }}#ffffff
{{ S1_TITLE }}Living Room
{{ S1_DESCRIPTION }}Step into the spacious and bright living room, featuring large windows that flood the space with natural light.
{{ S1_DESCRIPTION_2 }}The open floor plan is perfect for entertaining, and the modern fixtures add a touch of elegance
{{ S2_TITLE }}KITCHEN
{{ S2_DESCRIPTION }}The kitchen is a chef's dream, equipped with stainless steel appliances, granite countertops, and ample cabinet space.
{{ S2_DESCRIPTION_2 }}The central island provides additional workspace and is ideal for casual dining.
{{ IMAGE_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/e08a3319-c4f9-42f9-b867-9c719475db31/source.jpg
{{ S1_IMAGE_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/0c217a83-72a8-445d-b12c-c5dee7e15fd6/source.jpg
{{ S2_IMAGE_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/0dfcc344-553d-42d3-8160-7004dc070743/source.jpg
{{ S3_TITLE }}MASTERS ROOM
{{ S3_DESCRIPTION }}The master bedroom offers a peaceful retreat with its generous size, walk-in closet, and ensuite bathroom.
{{ S3_DESCRIPTION_2 }}Large windows provide beautiful views and plenty of natural light.
{{ S3_IMAGE_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/8e289005-d2f8-4d3d-aa5f-b036a993bca1/source.jpg
{{ S4_TITLE }}BATHROOM
{{ S4_DESCRIPTION }}Each bathroom is tastefully designed with modern fixtures, tile flooring, and stylish vanities.
{{ S4_DESCRIPTION_2 }}The master bath includes a double sink, a soaking tub, and a separate shower.
{{ S4_IMAGE_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/f09ab03a-9024-4e43-8323-bfb99572376e/source.jpg
{{ S5_TITLE }}Outdoor Space
{{ S5_DESCRIPTION }}Enjoy the beautifully landscaped backyard, perfect for outdoor activities and relaxation.
{{ S5_DESCRIPTION_2 }}The patio area is ideal for barbecues and entertaining guests.
{{ S6_TITLE }}Thank you for joining us on this virtual tour
{{ S6_DESCRIPTION_2 }}We hope you enjoyed exploring this beautiful property. For more information or to schedule a visit, please contact us!
{{ WEBSITE }}www.reallygreatsite.com
{{ S6_TEXT_BACKGROUND_COLOR }}#000000
{{ S6_TEXT_FONT_COLOR_2 }}#a7fbd7
{{ LINE_COLOR }}#ebf9ff
{{ AUDIO_SRC }}https://templates.shotstack.io/Cinematic-Real-Estate-Promo-Template/7febcf63-a8b8-4172-96ac-22ce101392b6/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

Feed it your listings and every property gets its own video the moment it hits the market — no editor in the loop.

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 use this square template for Instagram and LinkedIn feeds?

Yes. It renders 1080×1080 (1:1). Set output.aspectRatio to 9:16 or 16:9 in the JSON to produce vertical or landscape versions from the same timeline.

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