> 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-monocolor-background.md).

# Quote Card with Monocolor Background

> 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/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd.md).

## 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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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.contouron.com/v2/videos/from-templates
Content-Type: application/json
contouron-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
* 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-monocolor-background.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.
