> 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/tutorial-carousel-with-minimalist-flat-style.md).

# Tutorial Carousel with Minimalist Flat 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/2491f97b-1b47-4efa-8b96-8c651fa7b3d5.md).

## Tutorial Carousel with Minimalist Flat Style

Create step-by-step tutorial carousels with a minimalist flat design style.

### When to Use This Template

* You are creating step-by-step educational or how-to carousels
* You want a structured format with a title slide, numbered content slides, and a CTA slide with your profile info
* Popular format for LinkedIn and Instagram carousels in business, marketing, and tech education
* Includes built-in CTA buttons (e.g., "Follow for more tips", "Share", "Bookmark") and a profile slide

### Template Information

| Property    | Value                                                                |
| ----------- | -------------------------------------------------------------------- |
| Template ID | `/base/v2/tutorial-carousel/2491f97b-1b47-4efa-8b96-8c651fa7b3d5/v1` |
| Output Type | Slideshow                                                            |
| Category    | Tutorial Carousels                                                   |

### Parameters

| Parameter          | Type   | Required | Default                               | Description                                        |
| ------------------ | ------ | -------- | ------------------------------------- | -------------------------------------------------- |
| font               | enum   | No       | font-sans                             | Font family. 24 options available                  |
| mainTitle          | string | Yes      | 3 Ways to Grow Faster on Instagram    | Main title. 5-50 chars                             |
| authorName         | string | Yes      | Alex Hormozi                          | Author name. Max: 60 chars                         |
| ctaButtonText      | string | Yes      | Swipe Right                           | CTA button text. Max: 50 chars                     |
| contentItems       | array  | Yes      | -                                     | Content items. Min: 1. Each: 10-300 chars          |
| backgroundColor    | color  | No       | #F5D5C8                               | Main background color                              |
| borderColor        | color  | No       | #000000                               | Border frame color                                 |
| textColor          | color  | No       | #000000                               | Main text color                                    |
| ctaTitle           | string | Yes      | Share your thoughts in comments below | CTA title. 5-150 chars                             |
| ctaActions         | array  | Yes      | -                                     | Action buttons. Min: 1, Max: 100. Each: 1-50 chars |
| profileName        | string | Yes      | Alex Hormozi                          | Profile name. Max: 60 chars                        |
| profileTitle       | string | Yes      | Brand Strategist                      | Profile title. Max: 80 chars                       |
| profileDescription | string | Yes      | -                                     | Profile description. 10-250 chars                  |
| profileCta         | string | Yes      | Follow for more tips                  | Profile CTA. Max: 50 chars                         |
| profileImage       | image  | No       | -                                     | Profile image URL                                  |
| aspectRatio        | enum   | No       | 1:1                                   | Values: 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/tutorial-carousel/2491f97b-1b47-4efa-8b96-8c651fa7b3d5/v1",
  "inputs": {},
  "prompt": "Create a tutorial carousel about 5 ways to improve your LinkedIn profile for job seekers",
  "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/tutorial-carousel/2491f97b-1b47-4efa-8b96-8c651fa7b3d5/v1",
  "inputs": {
    "mainTitle": "3 Ways to Grow Faster on Instagram",
    "authorName": "Alex Hormozi",
    "ctaButtonText": "Swipe Right",
    "contentItems": [
      "Stop chasing vanity metrics. Focus on getting 100 true fans who buy from you",
      "Document your process, not results. Show the messy middle where real learning happens",
      "Reply to every DM for your first 1,000 followers. This builds loyalty money cannot buy"
    ],
    "backgroundColor": "#F5D5C8",
    "borderColor": "#000000",
    "ctaTitle": "Share your thoughts in comments below",
    "ctaActions": ["Leave a like", "Share to help others", "Bookmark for later"],
    "profileName": "Alex Hormozi",
    "profileTitle": "Brand Strategist",
    "profileDescription": "I share daily posts to help you scale your business 10x faster.",
    "profileCta": "Follow for more tips",
    "aspectRatio": "1:1"
  },
  "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/tutorial-carousel/2491f97b-1b47-4efa-8b96-8c651fa7b3d5/v1",
  "inputs": {
    "authorName": "Your Name",
    "profileName": "Your Name",
    "profileTitle": "Your Title",
    "backgroundColor": "#E8F4F8",
    "aspectRatio": "4:5"
  },
  "prompt": "Create a 4-step tutorial about email marketing best practices",
  "render": true
}
```

### Related Templates

* Tutorial Carousel with Monocolor Background
* Image Slideshow with Prominent Text

### 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/tutorial-carousel-with-minimalist-flat-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.
