Automate your Real Estate Listings

Real Estate Video Listing Maker

This demo turns static images into real estate video listings with Shotstack.

GET STARTED GitHub GitHub

About the Real Estate Video Listing Maker

Transform your property listings into engaging videos effortlessly with the Real Estate Video Listing Maker. This demo showcases how you can automate the creation of real estate video listings using Shotstack's powerful video editing API. Simply provide your property images and details, and let the tool generate a professional video that highlights the best features of your listings.

The Real Estate Video Listing Maker assembles your images into a dynamic slideshow, complete with transitions, text overlays, and background music. By leveraging Shotstack's API, it automates the video creation process, saving you time and helping you to market your properties more effectively across digital platforms.

This open-source project demonstrates how you can integrate video automation into your real estate business. Explore the code to understand how to customize and extend the functionality to fit your specific needs, and start enhancing your listings with compelling videos today.

Get started with Shotstack's video editing API in two steps:

  1. Sign up for free to get your API key.
  2. Send an API request to create your video:
    curl --request POST 'https://api.shotstack.io/v1/render' \
    --header 'x-api-key: YOUR_API_KEY' \
    --data-raw '{
    "timeline": {
    "tracks": [
    {
    "clips": [
    {
    "asset": {
    "type": "video",
    "src": "https://shotstack-assets.s3.amazonaws.com/footage/beach-overhead.mp4"
    },
    "start": 0,
    "length": "auto"
    }
    ]
    }
    ]
    },
    "output": {
    "format": "mp4",
    "size": {
    "width": 1280,
    "height": 720
    }
    }
    }'