# 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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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](/api/visuals/5903b592-1255-43b4-b9ac-f8ed7cbf6a5f.md)
* [When X then Y Text Slideshow](/api/visuals/c9892c3b-fa75-4ade-821a-a50ff8456230.md)

## See Also

* [Create Visual API Reference](/api/create-video.md)
* [All Visual Templates](/api/visuals.md)


---

# Agent Instructions: 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:

```
GET https://help.blotato.com/api/visuals/0ddb8655-c3da-43da-9f7d-be1915ca7818.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
