> For the complete documentation index, see [llms.txt](https://help.blotato.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.blotato.com/api/visuals/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0.md).

# Single Centered Text Quote

A simple slideshow with a single centered text quote on a solid background.

## Template Information

| Property    | Value                                                  |
| ----------- | ------------------------------------------------------ |
| Template ID | `/video-template/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0` |
| Output Type | Slideshow                                              |
| Category    | AI-Generated Infographics                              |

## Parameters

| Parameter | Type   | Required | Default | Description                                                                                |
| --------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------ |
| quotes    | array  | Yes      | -       | List of quote strings. Each quote becomes a separate card in the carousel. Min: 1, Max: 20 |
| quotes\[] | string | Yes      | -       | Individual quote text. Length: 10-350 characters                                           |

## 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": "/video-template/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0",
  "inputs": {},
  "prompt": "Create 5 motivational quotes about perseverance",
  "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": "/video-template/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0",
  "inputs": {
    "quotes": [
      "Be careful who you let speak into your life. Not all opinions are qualified.",
      "People will question your choices...especially the ones too scared to make their own.",
      "Take advice from people who have receipts, not just opinions.",
      "Your energy introduces you before you even speak.",
      "Stop explaining yourself to people who are committed to misunderstanding you."
    ]
  },
  "render": true
}
```

## Example 3: Single Quote

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

{
  "templateId": "/video-template/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0",
  "inputs": {
    "quotes": [
      "The only way to do great work is to love what you do."
    ]
  },
  "render": true
}
```

## Related Templates

* [Quote Card Monocolor](/api/visuals/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd.md)
* [Quote Card Paper + Highlight](/api/visuals/f941e306-76f7-45da-b3d9-7463af630e91.md)
* [Book Page Infographic](/api/visuals/b88c8273-6406-48c6-85e7-096119aefe30.md)

## See Also

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


---

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

```
GET https://help.blotato.com/api/visuals/9f4e66cd-b784-4c02-b2ce-e6d0765fd4c0.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.
