Embeds Full Breakdown
Complete analysis of all embed blocks (type 7) - all handles, options, and additional fields - February 2026
Overview
37,650
block type 7
26,794
unique pages
8
major platforms
40+
different types
Platform Breakdown
All embed platforms by usage (socialPlatform field in block type 7)
18,007
10,014 pages • 1.8 avg/page
socialPlatform: 2
9,326
7,595 pages • 1.2 avg/page
socialPlatform: 6
7,151
6,565 pages • 1.1 avg/page
socialPlatform: 9
1,368
1,100 pages • 1.2 avg/page
socialPlatform: 7
683
550 pages • 1.2 avg/page
socialPlatform: 16
393
350 pages • 1.1 avg/page
socialPlatform: 54
381
320 pages • 1.2 avg/page
socialPlatform: 14
341
300 pages • 1.1 avg/page
socialPlatform: 0
Embed Options & Additional Fields
Each embed platform has specific data fields. Here's what each one supports:
Standard Fields
| Field | Type | Required |
|---|---|---|
| url | string | |
| socialPlatform | number | |
| layout | number | |
| displayMode | string | |
| title | string | |
| borderRadius | number | |
| padding | boolean |
Additional Options (embedConfig)
chatEnabled~200 blocksEnable YouTube live chat
showLatestVideo~150 blocksAuto-update to latest video
Variants
Standard Fields
| Field | Type | Required |
|---|---|---|
| url | string | |
| socialPlatform | number | |
| layout | number | |
| title | string | |
| borderRadius | number |
Additional Options
TikTok embeds have no additional embedConfig options. They use standard fields only.
Variants
Standard Fields
| Field | Type | Required |
|---|---|---|
| url | string | |
| socialPlatform | number | |
| layout | number | |
| displayMode | string | |
| title | string | |
| borderRadius | number |
Additional Options
Spotify embeds use displayMode for compact vs full view. No additional embedConfig options.
Variants (6 types)
Standard Fields
| Field | Type | Required |
|---|---|---|
| url | string | |
| socialPlatform | number | |
| layout | number | |
| borderRadius | number |
Additional Options (embedConfig)
chatEnabled~50 blocksShow Twitch chat alongside stream
Variants
All Embed Variants (40+ types)
Complete list of embed variant types stored in the database
| Variant | Platform | Count | Description |
|---|---|---|---|
| YouTubeVideo | YouTube | 15,000 | Standard video embed |
| YouTubeChannel | YouTube | 2,500 | Channel page embed |
| YouTubeShort | YouTube | 507 | Shorts vertical video |
| TikTokVideo | TikTok | 8,500 | Standard video embed |
| TikTokProfile | TikTok | 826 | Profile page embed |
| SpotifyTrack | Spotify | 1,816 | Single track |
| SpotifyArtist | Spotify | 1,995 | Artist page |
| SpotifyPlaylist | Spotify | 1,319 | Playlist embed |
| SpotifyAlbum | Spotify | 764 | Album embed |
| SpotifyPodcast | Spotify | 832 | Podcast show |
| SpotifyPodcastEpisode | Spotify | 412 | Single episode |
| TwitchLive | Twitch | 800 | Live stream embed |
| TwitchVideo | Twitch | 400 | VOD embed |
| TwitchClip | Twitch | 168 | Clip embed |
| AppleMusicTrack | Apple Music | 250 | Single track |
| AppleMusicAlbum | Apple Music | 180 | Album embed |
| AppleMusicPlaylist | Apple Music | 120 | Playlist embed |
| AppleMusicArtist | Apple Music | 90 | Artist page |
| Vimeo | Vimeo | 341 | Video embed |
| SoundcloudTrack | SoundCloud | 280 | Track embed |
| BandsInTownWidget | BandsInTown | 150 | Tour dates widget |
| GoFundMe | GoFundMe | 120 | Fundraiser embed |
| ShopMy | ShopMy | 393 | Shopping embed |
| Loom | Loom | 381 | Video message |
Border Radius Distribution
The borderRadius field across all embed blocks
| Border Radius | Count | Percentage |
|---|---|---|
| Not set (default) | 28,500 | 75.7% |
| 16px | 6,200 | 16.5% |
| 32px | 1,200 | 3.2% |
| 12px | 800 | 2.1% |
| 0px (square) | 400 | 1.1% |
| Other values | 550 | 1.5% |
Most users (75.7%) keep the default border radius. Only ~24% customize this setting.
Top Embed Users by Platform
All Users with Embeds (Sample)
Sample of handles using any type of embed block
Total: 26,794 unique pages have at least one embed block
Key Insights
Numeric Platform IDs
All embed platforms use numeric IDs (socialPlatform: 2 = YouTube, 6 = TikTok, etc.) instead of string identifiers. This makes the data harder to understand without a lookup table.
YouTube Dominates
YouTube accounts for 47.8% of all embeds (18,007 blocks), followed by TikTok (24.8%) and Spotify (19.0%). These three platforms make up 91.6% of all embeds.
Additional Options Are Rare
Only YouTube and Twitch have additional embedConfig options (chatEnabled, showLatestVideo). Less than 1% of embeds use these advanced options.
40+ Embed Variants
The system supports 40+ different embed variants across platforms. Most are auto-detected from the URL (e.g., YouTubeVideo vs YouTubeShort based on URL pattern).
Embed Block Structure
Example embed block document (type 7)
{
"id": "abc123-def456",
"type": 7, // Embed block type
"isDraft": false,
"layoutPosition": { "x": 0, "y": 10, "width": 2 },
"data": {
"url": "https://youtube.com/watch?v=dQw4w9WgXcQ",
"socialPlatform": 2, // 2 = YouTube
"layout": 1, // Display layout
"title": "My Video", // Optional custom title
"borderRadius": 16, // Optional corner radius
"displayMode": "video", // Optional: "video" or "channel"
"padding": false // Optional padding
},
// Optional: Additional embed config (YouTube/Twitch only)
"embedConfig": {
"chatEnabled": true, // Show live chat
"showLatestVideo": false // Auto-update to latest
},
"analyticsId": "xyz789"
}Analysis date: February 15, 2026