> 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/quote-card-with-paper-background-and-highlight.md).

# Quote Card with Paper Background and Highlight

> 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/f941e306-76f7-45da-b3d9-7463af630e91.md).

## 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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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
* Tweet Card with Minimal Style

### 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/quote-card-with-paper-background-and-highlight.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.
