> For the complete documentation index, see [llms.txt](https://help.contouron.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.contouron.com/api/visual/video-of-images-and-text-with-minimal-style.md).

# Video of Images and Text with Minimal Style

> For the complete documentation index, see [llms.txt](https://help.contouron.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.contouron.com/api/visuals/3ed4bb92-dbfe-45e6-9dc8-605b77f70506.md).

## 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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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
* When X then Y Text Slideshow

### See Also

* Create Visual API Reference
* All Visual Templates


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.contouron.com/api/visual/video-of-images-and-text-with-minimal-style.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
