# Quote Card with Paper Background and Highlight

Create quote card carousels with paper background and highlighter effect on text.

## When to Use This Template

* You want quote cards with a paper texture background and colored highlighter effect on text
* You are creating "listicle" or "advice" style carousels that mimic a handwritten or notebook feel
* Popular format for Instagram carousels in the coaching, self-improvement, and personal development space

## Template Information

| Property    | Value                                                         |
| ----------- | ------------------------------------------------------------- |
| Template ID | `/base/v2/quote-card/f941e306-76f7-45da-b3d9-7463af630e91/v1` |
| Output Type | Slideshow                                                     |
| Category    | Quote Cards                                                   |

## Parameters

| Parameter        | Type   | Required | Default                                             | Description                                                 |
| ---------------- | ------ | -------- | --------------------------------------------------- | ----------------------------------------------------------- |
| font             | enum   | No       | font-sans                                           | Font family. 24 options available                           |
| title            | string | Yes      | I'm 35.\nIf You're in Your\n30s or 40s,\nRead This: | Title text. Max: 50 chars                                   |
| quotes           | array  | Yes      | -                                                   | List of quote strings. Min: 1, Max: 100. Each: 10-500 chars |
| highlighterColor | color  | No       | #008000                                             | Highlighter color behind text                               |
| paperBackground  | enum   | No       | White paper                                         | Values: White paper, Yellow paper, Light paper              |
| 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/f941e306-76f7-45da-b3d9-7463af630e91/v1",
  "inputs": {},
  "prompt": "Create a viral quote carousel about life lessons for people in their 30s",
  "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/f941e306-76f7-45da-b3d9-7463af630e91/v1",
  "inputs": {
    "title": "Hard Truths About Success",
    "quotes": [
      "I wasted my 20s building other people's dreams. At 35, I started building my own.",
      "People will question your choices...especially the ones too scared to make their own.",
      "Take advice from people who have receipts, not opinions."
    ],
    "highlighterColor": "#FFD700",
    "paperBackground": "Yellow paper",
    "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/quote-card/f941e306-76f7-45da-b3d9-7463af630e91/v1",
  "inputs": {
    "highlighterColor": "#FF6B6B",
    "paperBackground": "Light paper"
  },
  "prompt": "Generate 5 quotes about overcoming self-doubt and building confidence",
  "render": true
}
```

## Related Templates

* [Quote Card with Monocolor Background](/api/visuals/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd.md)
* [Tweet Card with Minimal Style](/api/visuals/ba413be6-a840-4e60-8fd6-0066d3b427df.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/f941e306-76f7-45da-b3d9-7463af630e91.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.
