Tagembed: Social Media Aggregator

Connect Tagembed, a social media aggregator that collects feeds and reviews from 20+ platforms, with Webflow to display auto-updating social walls, review widgets, and shoppable galleries using embed code or APIs.

Install app
View website
View lesson
A record settings
CNAME record settings
Tagembed: Social Media Aggregator

Tagembed pulls live feeds and reviews from 20+ platforms — Instagram, Facebook, Twitter/X, Google Reviews, and more, into embeddable widgets that refresh on their own. Paste one snippet into a page, and the widget stays current on a schedule, with feeds, moderation, and styling all managed from the Tagembed dashboard.

That saves the manual grind of copying posts and republishing every time something new goes live. It fits freelancers and agencies adding social proof to client sites, social media managers surfacing brand content, and e-commerce operators building shoppable UGC galleries on product pages.

How to integrate Tagembed: Social Media Aggregator with Webflow

What is Tagembed: Social Media Aggregator? Tagembed is a social media aggregator and no-code platform that collects social feeds and customer reviews from 20+ platforms and displays them on websites. It supports Instagram, Facebook, Twitter/X, LinkedIn, YouTube, TikTok, Google Reviews, Yelp, and more. It offers five widget types: Social, Review, Shoppable Gallery, Story, and Album.

Teams reach for Tagembed with Webflow when a site needs fresh social content that updates on its own. A conference page can aggregate attendee posts by hashtag during an event. A product page can show customer photos from Instagram. A homepage can display a LinkedIn company feed, which is exactly what PowerPlan did to surface its most active channel directly on its public site.

The Tagembed-Webflow integration supports three approaches:

  • The Tagembed embed code handles social feeds, reviews, and galleries with a copy-paste snippet and no custom development.
  • Custom code placement lets you control where the widget appears, from a single element to site-wide injection.
  • The Webflow Data API and Tagembed API give you full control over syncing social posts into the CMS, but require server-side development.

Most implementations use the embed method, then reach for the API path only when content needs to live as native CMS items.

Use the Tagembed embed code

There is no official Tagembed app in the Webflow Marketplace. Instead, generate the embed code in the Tagembed dashboard and paste it into an Embed element. Tagembed describes the process as achievable in coding-free steps, so this is the path most builders take. The Webflow integrations directory lists Tagembed as offering multiple ways to embed social feeds, from copy-paste widgets to API-powered builds.

This method covers the full set of Tagembed capabilities once the snippet is in place:

  • Social feeds from 20+ platforms including Instagram, Facebook, Twitter/X, YouTube, and LinkedIn
  • All five widget types: Social, Review, Story, Album, and Shoppable Gallery
  • Auto-updating feeds that refresh on a schedule without touching your site
  • Themes, layouts, card styles, and custom CSS configured in the Tagembed dashboard
  • Moderation panel, Profanity Filter, and Ratings Filter managed before content reaches the page

To set up the integration:

  1. In the Tagembed dashboard, create a widget and connect a social media source.
  2. Click Embed Widget on the bottom-left menu panel.
  3. Select HTML as the website platform, then copy the code from the dialogue box.
  4. Back in the Designer, drag an Embed element onto the page canvas and paste the code.
  5. Click Save, then Publish your site.

You have two embed formats to choose from. The iFrame option is the standard fallback, while Tagembed describes the JS Code option as SEO-friendly with compatibility across any CMS. Both work in the Embed element. Note that the widget shows in preview mode but only goes live to visitors after you publish the site. Follow the full Tagembed Webflow embed guide for platform-specific feeds like Instagram, Facebook, or Google Reviews.

Place embed code with custom code options

The embed snippet stays the same across methods, but where you put it changes how the widget behaves. You have four placement options depending on whether the widget belongs on one element, one page, every page, or inside CMS content. Choose based on scope and how many places the feed needs to appear.

Add a widget with a Code Embed element

Use a Code Embed element when you want a widget at a specific spot on a page, like a testimonial wall in a section or a feed in a sidebar. This is the most common placement for per-widget control.

To add the widget:

  1. Open the Add panel and drag a Code Embed element onto the canvas.
  2. Paste the Tagembed HTML into the element.
  3. Click Save, then Publish.

The Code Embed element accepts only HTML, CSS in <style> tags, and JavaScript in <script> tags. It doesn't allow <html>, <head>, or <body> tags, and no server-side languages. The 50,000-character limit per embed is far above what Tagembed snippets use. You need a paid plan for this element — it isn't available on the free plan.

Embed widgets inside CMS content

Use the CMS embed, covered in the custom code in the CMS documentation, when a widget belongs inside a Collection item — such as a per-product social feed on a CMS Collection page. This places the snippet in a Rich text field so it renders alongside CMS content.

To add the widget to a Collection item:

  1. Open the CMS and select a Collection with a Rich text field, then open the Collection item.
  2. Inside the Rich text field, create a new line and click the + icon.
  3. Select HTML embed or Code block and paste the Tagembed code.

This keeps a feed tied to individual records, so a Collection List of product pages can each carry its own widget. See the custom code in the CMS docs for details.

Add code at the page or site level

Reach for page-level or site-wide custom code in head and body tags when the widget loads a shared script or needs to appear consistently. Page settings apply to one page, while site settings apply across all pages.

To add page-level code:

  1. Open page settings and find the Custom code section.
  2. Paste the snippet into the Inside <head> tag or Before </body> tag field, then save.

For site-wide code, go to Site settings > Custom code and paste into the Head code or Footer code field. Each section holds up to 50,000 characters. Read the custom code in head and body tags guide before choosing this route.

Build with the Webflow and Tagembed APIs

The API path turns aggregated social posts into native CMS items instead of embedded widgets. Take this route when you need posts as structured content you can style with components, filter, or sort. You'll need server-side development and a Tagembed Enterprise or API-tier plan. Tagembed offers no webhooks, so any sync runs as a scheduled poll rather than a real-time push.

The integration uses these APIs:

  • The Tagembed REST API handles programmatic access to galleries, posts, and widgets, authenticated with a user_key query parameter
  • The Webflow CMS item guide covers CMS collections and items for Data API builds
  • Webflow webhooks trigger real-time events like collection_item_created to confirm writes

Plan around the Tagembed rate limit of one request per minute and a maximum of 100 posts per request when scheduling polls.

Sync social posts into the CMS

This sub-method pulls posts from Tagembed and writes them as CMS items, so a curated feed becomes a styleable Collection. Each record maps social content to fields you control.

To implement the sync:

  1. Poll the Tagembed REST API base URL https://api.taggbox.com/api/v1/support/ with your user_key to fetch posts.
  2. Transform each post into fieldData with at least a name and slug per item.
  3. Send the records with POST /v2/collections/{collection_id}/items, which accepts up to 100 items per request and requires the CMS:write scope.
  4. Publish the items with POST /v2/collections/{collection_id}/items/publish.

CMS item limits vary by plan, so size your sync against the volume of posts you intend to store. The bulk create endpoint keeps writes efficient within the Tagembed rate limit of 1 request per minute and 100 posts per request.

Inject widget JavaScript site-wide via API

This sub-method registers the Tagembed widget script through the custom code API instead of pasting it by hand. Use it when you're managing many sites programmatically.

To inject the script:

  1. Register the hosted JS file with POST /v2/sites/{site_id}/registered_scripts/hosted.
  2. Apply it to the site with PUT /v2/sites/{site_id}/custom_code. Target the <head> or <body>.
  3. Publish the site with POST /v2/sites/{site_id}/publish.

This mirrors the manual site-wide placement but fits automated deployment workflows across multiple sites.

What can you build with the Tagembed: Social Media Aggregator Webflow integration?

Pairing Tagembed with Webflow lets you display live social content and reviews without manually updating pages or republishing the site for every new post.

  • E-commerce social proof walls: Drop customer Instagram and Facebook photos onto product pages with a Code Embed element, so a product gallery shows real buyer content that refreshes automatically.
  • Event engagement hubs: Aggregate attendee posts and sponsor mentions by hashtag into a conference page that updates throughout a live event without manual edits.
  • Customer testimonial feeds: Combine Google Reviews, Facebook recommendations, and Twitter mentions into one moderated section. Apply the Profanity and Ratings Filters before content reaches visitors.
  • CMS-synced social galleries: Poll the Tagembed API and write posts into a Collection, so a portfolio or feed renders as native CMS items you style with components.

If you need more control over how social posts map to native content and design systems, the API integration path covers those cases with full flexibility.

Frequently asked questions

  • Add an Embed element to your page, paste the Tagembed embed code, then publish. In the Tagembed dashboard, create a widget, click Embed Widget, select HTML as the platform, and copy the snippet.

  • Yes. The Code Embed element requires a Core, Growth, Agency, or Freelancer Workspace, or an active Site plan, and is not available on the free Webflow plan.

  • Only HTML, CSS in <style> tags, and JavaScript in <script> tags. The element does not accept <html>, <head>, or <body> tags, and no server-side languages like PHP, Python, or Ruby. There is a 50,000-character limit per embed, well above what Tagembed snippets use.

  • Three common causes exist: an expired access token, posts hidden by moderation settings, or auto-update being disabled. Reconnect your social account, check that posts are public, then enable auto-update from the content gallery's three-dot menu. The Tagembed troubleshooting guide walks through each fix.

Tagembed: Social Media Aggregator
Tagembed: Social Media Aggregator
Joined in

Category

Social media

Description

Tagembed is a social media aggregator that pulls feeds and reviews from 20+ platforms. Add it to Webflow via embed code or sync posts to CMS via the API.

Install app

This integration page is provided for informational and convenience purposes only.


Other Social media integrations

Other Social media integrations

Postblaster

Postblaster

Connect Postblaster, a LinkedIn automation tool, with Webflow to automatically generate and publish LinkedIn posts when you add new content to your CMS collections.

Social media
Learn more
Ordinal

Ordinal

Connect Ordinal with Webflow to publish blog posts directly from your social media calendar to CMS collections.

Social media
Learn more
Kick Scraper

Kick Scraper

Connect Kick Scraper with Webflow to detect and block bot traffic, protect content from scrapers, and filter analytics to show only real human visitors.

Social media
Learn more
Flowstar SMI SSB

Flowstar SMI SSB

Connect Flowstar SMI SSB with Webflow to add social media icons and share buttons to your site.

Social media
Learn more
Social Icons - Follow Us

Social Icons - Follow Us

Connect Smartarget Social Icons - Follow Us with Webflow to display floating social media follow icons across your site.

Social media
Learn more
TikTok

TikTok

Use TikTok with Webflow to publish video content on your site, measure conversions, and keep website content aligned with your TikTok activity.

Social media
Learn more
Tagembed

Tagembed

Connect Tagembed to Webflow to seamlessly display real-time social media feeds from 20+ platforms, boost engagement, and showcase authentic user content — no coding required.

Social media
Learn more
Twitter (X)

Twitter (X)

Connect Twitter (X) with Webflow to embed live social feeds, automate post distribution, and control how pages appear when shared on X.

Social media
Learn more
Twitter share buttons

Twitter share buttons

Dynamically embed Twitter share buttons.

Social media
Learn more

Related integrations

No items found.

Get started for free

Try Webflow for as long as you like with our free Starter plan. Purchase a paid Site plan to publish, host, and unlock additional features.

Get started — it’s free