# 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](https://help.blotato.com/api/visuals/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd)
* [Quote Card Paper + Highlight](https://help.blotato.com/api/visuals/f941e306-76f7-45da-b3d9-7463af630e91)
* [Book Page Infographic](https://help.blotato.com/api/visuals/b88c8273-6406-48c6-85e7-096119aefe30)

## See Also

* [Create Visual API Reference](https://help.blotato.com/api/create-video)
* [All Visual Templates](https://help.blotato.com/api/visuals)
