# 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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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.blotato.com/v2/videos/from-templates
Content-Type: application/json
blotato-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](https://help.blotato.com/api/visuals/9714ae5c-7e6b-4878-be4a-4b1ba5d0cd66)
* [Quote Card with Monocolor Background](https://help.blotato.com/api/visuals/77f65d2b-48cc-4adb-bfbb-5bc86f8c01bd)

## See Also

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