> 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/tweet-card-with-minimal-style.md).

# Tweet Card with Minimal Style

> 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/ba413be6-a840-4e60-8fd6-0066d3b427df.md).

## Tweet Card with Minimal Style

Create Twitter/X-style quote cards with a minimal design.

### When to Use This Template

* You want to repurpose tweets or X posts as carousel slides styled to look like actual tweets
* You are cross-posting Twitter/X content to Instagram, LinkedIn, or TikTok as a slideshow
* You want to quote an influencer or public figure in the familiar tweet card format
* Supports dark and light themes to match your brand

### Template Information

| Property    | Value                                                         |
| ----------- | ------------------------------------------------------------- |
| Template ID | `/base/v2/tweet-card/ba413be6-a840-4e60-8fd6-0066d3b427df/v1` |
| Output Type | Slideshow                                                     |
| Category    | Tweet Cards                                                   |

### Parameters

| Parameter    | Type    | Required | Default       | Description                                                          |
| ------------ | ------- | -------- | ------------- | -------------------------------------------------------------------- |
| quotes       | array   | Yes      | -             | List of quotes. Min: 1, Max: 100. Each: 10-280 chars (Twitter limit) |
| authorName   | string  | Yes      | Dean Graziosi | Name of person quoted. Max: 60 chars                                 |
| handle       | string  | Yes      | deangraziosi  | Social handle without @. Max: 50 chars                               |
| profileImage | image   | No       | -             | Profile photo URL                                                    |
| verified     | boolean | No       | true          | Show verified badge                                                  |
| theme        | enum    | No       | dark          | Values: dark, light                                                  |
| 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/tweet-card/ba413be6-a840-4e60-8fd6-0066d3b427df/v1",
  "inputs": {},
  "prompt": "Create 5 tweet-style quotes about building a personal brand on social media",
  "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/tweet-card/ba413be6-a840-4e60-8fd6-0066d3b427df/v1",
  "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 opinions."
    ],
    "authorName": "Alex Hormozi",
    "handle": "AlexHormozi",
    "profileImage": "https://example.com/alex-profile.jpg",
    "verified": true,
    "theme": "dark",
    "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/tweet-card/ba413be6-a840-4e60-8fd6-0066d3b427df/v1",
  "inputs": {
    "authorName": "Your Name",
    "handle": "yourhandle",
    "theme": "light"
  },
  "prompt": "Generate 4 motivational tweets about starting a business",
  "render": true
}
```

### Related Templates

* Tweet Card with Photo/Video Background
* Quote Card with Monocolor Background

### 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/tweet-card-with-minimal-style.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.
