# Quote Card with Monocolor Background

Create quote card carousels with a clean monocolor paper background.

## When to Use This Template

* You want a clean, text-only carousel of quotes with a solid color background
* You are a coach, motivational creator, or thought leader sharing quotes on Instagram, LinkedIn, or Twitter/X
* You do not need images -- text-only quote cards with a simple design
* You want to batch-produce quote carousels from a list of quotes or let AI generate them

## Template Information

| Property    | Value                                                         |
| ----------- | ------------------------------------------------------------- |
| Template ID | `/base/v2/quote-card/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd/v1` |
| Output Type | Slideshow                                                     |
| Category    | Quote Cards                                                   |

## Parameters

| Parameter   | Type   | Required | Default              | Description                                                                                                                                                                                                                                                                                                                                                                   |
| ----------- | ------ | -------- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| font        | enum   | No       | font-sans            | Font family. Values: font-sans, font-serif, font-mono, font-retro, font-montserrat, font-quicksand, font-philosopher, font-poppins, font-raleway, font-opensans, font-lato, font-oswald, font-playfair, font-roboto, font-ptsans, font-dmsans, font-nunito, font-comfortaa, font-worksans, font-fjallaone, font-rubik, font-barlow, font-bebasnue, font-caveat, font-pacifico |
| title       | string | Yes      | Inspirational Quotes | Title for the carousel. Max: 50 chars                                                                                                                                                                                                                                                                                                                                         |
| quotes      | array  | Yes      | -                    | List of quote strings. Each quote becomes a card. Min: 1, Max: 100. Each quote: 10-500 chars                                                                                                                                                                                                                                                                                  |
| aspectRatio | enum   | No       | 4:5                  | Values: 4:5, 1:1, 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/quote-card/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd/v1",
  "inputs": {},
  "prompt": "Create 5 motivational quotes about entrepreneurship and building businesses",
  "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/quote-card/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd/v1",
  "inputs": {
    "title": "Daily Wisdom",
    "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 opinions."
    ],
    "font": "font-playfair",
    "aspectRatio": "1:1"
  },
  "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/quote-card/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd/v1",
  "inputs": {
    "title": "Leadership Lessons",
    "font": "font-montserrat"
  },
  "prompt": "Generate 4 powerful quotes about leadership and team management",
  "render": true
}
```

## Related Templates

* [Quote Card with Paper Background and Highlight](https://help.blotato.com/api/visuals/f941e306-76f7-45da-b3d9-7463af630e91)
* [Tweet Card with Minimal Style](https://help.blotato.com/api/visuals/ba413be6-a840-4e60-8fd6-0066d3b427df)

## See Also

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