When you want to automate this

One video per listing, automatically.

1
See it
OutputMP4
Size1080 × 1920 (9:16)
Length10s
Frame rate25 fps
Tracks / clips39 / 52
Assets used1 audio, 4 image, 13 luma, 34 text
Soundtrackno
Merge fields28
2
Make it yours

Send a merge array with your values for these fields:

FieldDefault value
{{ TITLE }}EXPERIENCE MODERN LIVING
{{ DESCRIPTION }}Luxurious House for Rent
{{ ADDRESS }}123 AnywhereSt, Any City
{{ AMOUNT }}$500
{{ TIME }}/ per month
{{ S1_TITLE }}Our Facilities
{{ S1_DESCRIPTION }}3 Bathrooms
{{ S1_DESCRIPTION_2 }}Swimming Pool
{{ S1_DESCRIPTION_3 }}Internet
{{ S1_DESCRIPTION_4 }}3 Bedrooms
{{ S1_DESCRIPTION_5 }}Modern Kitchen
{{ S1_DESCRIPTION_6 }}Gym Center
{{ S1_DESCRIPTION_7 }}Living Room
{{ S1_DESCRIPTION_8 }}Garage
{{ S1_DESCRIPTION_9 }}Smart Home
{{ CTA }}Contact Us:
{{ PHONE }}+123-456-7890
{{ WEBSITE }}www.realestate.com
{{ BRAND_NAME }}REAL ESTATE
{{ WHITE_LOGO }}https://templates.shotstack.io/elegant-home-rent-premium-features/ab06675b-9a04-4017-ad85-648d6554fc80/source.png
{{ LONG_IMAGE_SRC_2 }}https://templates.shotstack.io/elegant-home-rent-premium-features/e09abec0-fdb5-4eb3-93ab-e22ec79364e6/source.jpg
{{ IMAGE_SRC_3 }}https://templates.shotstack.io/elegant-home-rent-premium-features/8f517b94-d96c-49c0-b7f3-6fb7944333bf/source.jpg
{{ IMAGE_SRC_4 }}https://templates.shotstack.io/elegant-home-rent-premium-features/dc9ec43b-ac41-4340-b760-9627d931a2af/source.jpg
{{ S1_TEXT_FONT_COLOR }}#ffffff
{{ S2_TEXT_FONT_COLOR_2 }}#000000
{{ ELEMENT_COLOR }}#5900ff
{{ BACKGROUND_COLOR_2 }}#ffffff
{{ AUDIO_SRC }}https://templates.shotstack.io/elegant-home-rent-premium-features/7ff8bb22-f62f-49ff-93fd-73c9e81e209a/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 28 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 28 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.

Is this template made for TikTok, Reels and Shorts?

Yes. It renders vertical 1080×1920 (9:16), the format those platforms expect. Change output.size or output.aspectRatio in the JSON if you also need a square or landscape cut.

Can I use my own photos?

Yes. The template uses 4 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.