> 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/image-slideshow-with-prominent-text.md).

# Image Slideshow with Prominent Text

> 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/0ddb8655-c3da-43da-9f7d-be1915ca7818.md).

## Image Slideshow with Prominent Text

Create image slideshows with prominent text overlays. 3.2M views, 3,800 likes.

### When to Use This Template

* You want AI-generated images with large, prominent text overlays for a news-style or story-style carousel
* You are creating "did you know" content, news recaps, or information-heavy slideshows for Instagram or TikTok
* All images are AI-generated from prompts -- you do not upload your own images with this template

### Template Information

| Property    | Value                                                               |
| ----------- | ------------------------------------------------------------------- |
| Template ID | `/base/v2/images-with-text/0ddb8655-c3da-43da-9f7d-be1915ca7818/v1` |
| Output Type | Slideshow                                                           |
| Category    | Images with Text                                                    |

### Parameters

| Parameter       | Type   | Required | Default | Description                               |
| --------------- | ------ | -------- | ------- | ----------------------------------------- |
| slides          | array  | Yes      | -       | Slide objects. Min: 1, Max: 20            |
| slides\[].image | string | Yes      | -       | AI prompt to generate image. 20-400 chars |
| slides\[].text  | string | Yes      | -       | Text overlay. 30-200 chars                |
| slideDuration   | number | No       | 5       | Seconds per slide. Range: 1-10            |
| aspectRatio     | enum   | No       | 4:5     | Values: 16:9, 1:1, 4:5, 9:16              |

### 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/0ddb8655-c3da-43da-9f7d-be1915ca7818/v1",
  "inputs": {},
  "prompt": "Create a 4-slide news story about a tech startup that raised $100M in funding",
  "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/0ddb8655-c3da-43da-9f7d-be1915ca7818/v1",
  "inputs": {
    "slides": [
      {
        "image": "A professional business person at a modern startup office with computers",
        "text": "Parag Agarwal, removed by Elon Musk as Twitter CEO, built an AI company valued at $740M"
      },
      {
        "image": "Modern tech infrastructure with servers and AI visualization",
        "text": "After leaving Twitter, he founded Parallel Web Systems. The company builds AI infrastructure for web search."
      },
      {
        "image": "Social media and AI concept with digital connections",
        "text": "We share informative AI content you will not find anywhere else"
      }
    ],
    "slideDuration": 5,
    "aspectRatio": "4:5"
  },
  "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/0ddb8655-c3da-43da-9f7d-be1915ca7818/v1",
  "inputs": {
    "slideDuration": 6,
    "aspectRatio": "9:16"
  },
  "prompt": "Create a 5-slide story about the rise of remote work in tech companies",
  "render": true
}
```

### Related Templates

* Image Slideshow with Text Overlays
* 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/image-slideshow-with-prominent-text.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.
