YouTube Embeds vs Carousel Embeds

Comparing standalone YouTube embed blocks (type 7) with YouTube carousel blocks (type 6, contentType 4) - February 2026

Side-by-Side Overview

YouTube Embed BlockType 7

18,007

total blocks

10,014

pages using

1.8

avg per page

6.9%

draft rate

Block type: 7 (Video Embed)

socialPlatform: 2 (YouTube)

Use case: Single video display

YouTube Carousel BlockType 6

1,654

total blocks

1,172

pages using

1.4

avg per page

9.0%

draft rate

Block type: 6 (Carousel)

contentType: 4 (YouTube)

Use case: Multiple videos in scrollable row

Direct Comparison

Metric
Embed (Type 7)
Carousel (Type 6)
RatioNotes
Total Blocks18,0071,65410.9:1Embeds are 11x more common
Pages Using10,0141,1728.5:1More pages use standalone embeds
Avg per Page1.81.41.3:1Embeds slightly more per page
Draft Rate6.9%9.0%Embeds have lower friction
VIP User %30.6%63.1%1:2.1Carousels are more premium

MongoDB Schema Differences

How the data is stored differently in the database

FieldEmbed Block (Type 7)Carousel Block (Type 6)Same?
type7 (Video Embed)6 (Carousel)
contentTypeN/A4 (YouTube)
socialPlatform2 (YouTube)N/A
url✓ Required✗ Not stored
title✓ Optional✓ Optional (header)
borderRadius✓ Per-block✓ itemBorderRadius
rows✗ N/A✓ 1 or 2
itemSize✗ N/A✓ sm/md/lg
childContentCount✗ N/A✓ Number of videos

MongoDB Document Examples

YouTube Embed Block (Type 7)

{
  "id": "abc123-def456",
  "type": 7,
  "isDraft": false,
  "layoutPosition": { "x": 0, "y": 10, "width": 2 },
  "data": {
    "url": "https://youtu.be/dQw4w9WgXcQ",
    "socialPlatform": 2,
    "title": "My Video",
    "borderRadius": 16,
    "layout": 1
  },
  "analyticsId": "xyz789"
}

Single video with URL stored directly in the block

YouTube Carousel Block (Type 6)

{
  "id": "carousel-123",
  "type": 6,
  "contentType": 4,
  "isDraft": false,
  "layoutPosition": { "x": 0, "y": 10, "width": 2 },
  "data": {
    "title": "My Videos",
    "rows": 1,
    "childContentCount": 5,
    "itemLayout": 3,
    "itemSize": "lg",
    "itemWidth": "md",
    "itemPadding": true,
    "itemBorderRadius": 16
  },
  "analyticsId": "car789"
}

Container block - video URLs stored separately or fetched dynamically

User Plan Distribution

YouTube Embed Users
Basic79061.6%
VIP39330.6%
Pro967.5%
Premium40.3%

Majority are Basic (free) users - embeds are accessible to all

YouTube Carousel Users
VIP15763.1%
Pro6224.9%
Basic3012.0%
Premium00%

VIP-dominated (63.1%) - carousels are a premium feature

Top Users by Type

Top YouTube Embed Users
22 embeds
21 embeds
18 embeds
17 embeds
15 embeds
17 embeds
17 embeds
Top YouTube Carousel Users
8 carousels
6 carousels
5 carousels
4 carousels
3 carousels
3 carousels
2 carousels
2 carousels

Overlap: Users like @nickkratka, @vietnamtravelprice, and @entrehouse use both formats

URL Format Distribution (Embeds Only)

YouTube embed blocks store the actual video URL. Carousels don't store URLs in the same way.

URL FormatCountPercentageDescription
youtu.be/9,77654.3%Mobile share links
youtube.com/watch7,72442.9%Desktop links
youtube.com/shorts1060.6%YouTube Shorts
youtube.com/channel4012.2%Channel pages

Carousel-Specific Settings

YouTube carousels have additional layout options not available in embed blocks

SettingCountPercentage
rows: 11,42086.0%
rows: 223414.0%
itemSize: lg98059.3%
itemSize: md67440.7%

Key Differences Summary

YouTube Embed (Type 7)
  • Stores video URL directly in block
  • Single video per block
  • Lower friction (6.9% draft rate)
  • More accessible (61.6% Basic users)
  • 11x more common than carousels
YouTube Carousel (Type 6)
  • Container for multiple videos
  • Horizontal scrolling display
  • Layout options (rows, itemSize)
  • Premium feature (63.1% VIP users)
  • Higher friction (9.0% draft rate)

Similarities

  • Both display YouTube content - videos, channels, or shorts
  • Both support custom titles - optional header text
  • Both support border radius - customizable corners
  • Both use layoutPosition - same grid positioning system
  • Both have analyticsId - tracked for engagement
  • Same power users - @nickkratka, @vietnamtravelprice use both

Recommendations

1. Consider Unifying Block Types

Having two separate block types for YouTube content adds complexity. A single "content" block with a layout mode (single vs carousel) would simplify the schema.

2. Promote Carousels to Basic Users

Only 12% of carousel users are on Basic plans. If carousels are valuable, consider making them more accessible to free users.

3. Reduce Carousel Friction

Carousels have 9% draft rate vs 6.9% for embeds. Simplifying the carousel creation flow could improve completion rates.

Analysis date: February 15, 2026