# Video of Images and Text with Minimal Style

Create videos combining images and text with minimal styling.

## When to Use This Template

* You have your own images and want to create a video (not a slideshow) that cycles through them — with or without text overlays and a watermark
* You are a photographer, real estate agent, or e-commerce seller who wants to turn product or property images into a video
* You want a branded watermark on the output video (optional — set to empty to remove)

## Template Information

| Property    | Value                                                               |
| ----------- | ------------------------------------------------------------------- |
| Template ID | `/base/v2/images-with-text/3ed4bb92-dbfe-45e6-9dc8-605b77f70506/v1` |
| Output Type | Video                                                               |
| Category    | Images with Text                                                    |

## Parameters

| Parameter   | Type   | Required | Default  | Description                      |
| ----------- | ------ | -------- | -------- | -------------------------------- |
| watemark    | string | No       | Watemark | Watermark text                   |
| textBgColor | color  | No       | #FFA500  | Background color for text        |
| titles      | array  | No       | -        | Array of title strings. Max: 100 |
| texts       | array  | No       | -        | Array of text strings. Max: 100  |
| images      | array  | No       | -        | Array of image URLs. Max: 100    |

## Example 1: AI-Powered with Prompt

```json
POST https://backend.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-api-key: YOUR_API_KEY

{
  "templateId": "/base/v2/images-with-text/3ed4bb92-dbfe-45e6-9dc8-605b77f70506/v1",
  "inputs": {},
  "prompt": "Create a video showcasing 3 luxury real estate properties with descriptions",
  "render": true
}
```

## Example 2: Manual Inputs

```json
POST https://backend.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-api-key: YOUR_API_KEY

{
  "templateId": "/base/v2/images-with-text/3ed4bb92-dbfe-45e6-9dc8-605b77f70506/v1",
  "inputs": {
    "watemark": "@YourBrand",
    "textBgColor": "#FFA500",
    "titles": [
      "Creative Slide",
      "Modern Template"
    ],
    "texts": [
      "Add engaging content easily and quickly. Capture attention instantly!",
      "Perfect for social media and presentations. Bring your designs to life with motion text."
    ],
    "images": [
      "https://example.com/image1.jpg",
      "https://example.com/image2.jpg"
    ]
  },
  "render": true
}
```

## Example 3: Hybrid Approach

```json
POST https://backend.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-api-key: YOUR_API_KEY

{
  "templateId": "/base/v2/images-with-text/3ed4bb92-dbfe-45e6-9dc8-605b77f70506/v1",
  "inputs": {
    "watemark": "@mybrand",
    "textBgColor": "#3B82F6"
  },
  "prompt": "Create a video about 4 tips for better sleep with calming imagery",
  "render": true
}
```

## Customization Tips

All parameters in this template are optional. To hide elements you don't need:

| To hide this          | Do this                                                                                         |
| --------------------- | ----------------------------------------------------------------------------------------------- |
| Watermark             | Set `watemark` to `""` (empty string). Note: the parameter name is `watemark`, not `watermark`. |
| Titles                | Omit the `titles` parameter, or pass an empty array `[]`                                        |
| Text overlays         | Omit the `texts` parameter, or pass an empty array `[]`                                         |
| Text background color | Omit `textBgColor` (only visible when titles/texts are present)                                 |

If you want a video of your images with no overlays at all, set `watemark` to `""` and omit `titles` and `texts`.

## Related Templates

* [Image Slideshow with Prominent Text](https://help.blotato.com/api/visuals/0ddb8655-c3da-43da-9f7d-be1915ca7818)
* [When X then Y Text Slideshow](https://help.blotato.com/api/visuals/c9892c3b-fa75-4ade-821a-a50ff8456230)

## See Also

* [Create Visual API Reference](https://help.blotato.com/api/create-video)
* [All Visual Templates](https://help.blotato.com/api/visuals)
