Tagembed

Add Tagembed social and review feeds to a Webflow site with a Code Embed element, or sync posts into the CMS through its API. Setup steps, current plan limits, and the performance tradeoffs.

Install app
View website
View lesson
A record settings
CNAME record settings
Tagembed

How to integrate Tagembed with Webflow

What is Tagembed? Tagembed is a social media aggregator that pulls posts and reviews from social networks and review sites into a hosted widget you can drop onto any website. It holds the platform connections, the moderation rules and the caching on its own servers, then hands you a snippet to paste. Its developer API is documented and served under the Taggbox name, on api.taggbox.com, which trips people up when they go looking for the docs.

There is no Tagembed app in the Webflow Marketplace, so nothing will appear under Apps in your project. You connect the two products one of two ways. The widget embed drops a hosted feed into a page using a Code Embed element and needs no code of your own. The API sync pulls posts into Webflow CMS Collections, so the content becomes yours to template, filter and keep. Marketing teams tend to reach for the first, developers and agencies for the second, and a single site can run both on different pages.

Add a Tagembed widget with a Code Embed element

This is the fast path: build and style the feed inside Tagembed, then paste one generated snippet into a single page. The snippet is a container div, an inner div carrying your wall ID, and a script tag that loads Tagembed's widget runtime from widget.tagembed.com. It has this shape:

<div class="tagembed-container" style="width:100%;height:100%;overflow:auto;">
  <div class="tagembed-socialwall" data-wall-id="YOUR_WALL_ID"></div>
  <script src="https://widget.tagembed.com/embed.min.js" async></script>
</div>

Paste it into a Code Embed element placed exactly where the feed should sit on the canvas. Do not put it in head and body code, because that loads Tagembed's script on every page of the site including the ones with no feed on them, and the widget still needs a container element on the page before it can render anything. Custom code is plan gated on both sides of your account: publishing it needs an active Site plan, or a Workspace on Core, Growth, Freelancer or Agency, where custom code is listed as a Core feature on Webflow's pricing page.

Two costs are worth pricing in before you ship it. The script is a third-party request that runs after your page loads and then pulls images from Tagembed's CDN, so a large grid near the top of a landing page will move your Largest Contentful Paint. The widget also loads content from other platforms and writes its own storage, which puts it in scope for cookie consent in the EU and UK, so hold it behind a consent tool such as Cookiebot rather than letting it fire on load.

To set it up:

  1. Create a Tagembed account and a widget, then pick your sources. Connect an account, or point the feed at a hashtag, handle, channel or business listing depending on the platform.

  2. Moderate before you embed. Approve posts individually or set keyword and profanity rules, so nothing reaches the live page that you have not agreed to show.

  3. Style the feed in Tagembed's editor. Layout, colours, fonts, banners and calls to action are set there, not in Webflow, because Webflow never sees the markup.

  4. Generate the embed code with HTML selected as the platform, then paste it into a Code Embed element on the page and publish the site.

After that first publish you do not republish the Webflow site to get fresh posts. The widget refetches on its own schedule, and that schedule is where the plan limits bite.

Those limits are the main reason teams upgrade, and they are the numbers most likely to be stale in any article you read about this tool. These are what Tagembed's plan table currently lists:

PlanFeedsWidget views per monthRefresh intervalModeration
Free1500Every 4 daysManual
Starter210,000Every 2 hoursManual
Growth450,000Every 30 minutesAutomatic
Advance101,000,000Every 15 minutesAI

X/Twitter and TikTok are capped separately at one feed each below the top tier, which is a downstream effect of how those platforms now license API access rather than a choice Tagembed made. Check the table yourself before promising a client a live feed.

Which sources you can connect at all changes for the same reason, and this is the part of any aggregator page that goes stale fastest. Tagembed's widget catalog currently lists Instagram, Facebook, X/Twitter, LinkedIn, YouTube, TikTok, Pinterest, Reddit, Flickr, Slack and RSS on the social side, plus Google, Facebook, Yelp, Airbnb, Amazon, Tripadvisor and Etsy on the reviews side. Its own plan table claims 10+ platforms on the free plan and 15+ on paid plans, so treat any larger count quoted elsewhere, including in older versions of this page, as unverified. Confirm the one source you actually need is still offered before you design a page around it.

The widget renders client-side, which shapes what it can do for search. The posts are injected into that empty container by embed.min.js after the browser runs it, so none of the feed exists in the HTML Webflow publishes. Google renders JavaScript and can often see it, but embedded third-party content is weak ranking material and it is not your content in the first place. Treat a social wall as a trust and engagement element, and write real on-page copy around it if the page has to rank.

Sync Tagembed posts into the Webflow CMS

If you want the posts to live in your own templates, be filterable by your own fields, or survive Tagembed being swapped out later, pull them through the API into CMS Collections instead of embedding a widget. This is more work up front and it is the option that pays off on a site you will still be running in two years.

The API authenticates with a user_key query parameter and is served from https://api.taggbox.com/api/v1/support/. It exposes GET endpoints for galleries, feeds and posts. The posts endpoint takes a galleryId, plus optional feedId, networkId, limit (10 by default) and offset parameters, and returns JSON or XML according to format.

curl "https://api.taggbox.com/api/v1/support/posts?user_key=YOUR_KEY&galleryId=YOUR_GALLERY_ID&limit=25&format=json"

From there you map each post to fields in a Webflow CMS Collection and write them in with the Webflow Data API, deduplicating on the post ID so a rerun updates existing items rather than piling up copies. Bind a Collection List to the Collection and the feed styles like any other content on your site, at your breakpoints, in your type scale.

Scaffolding this is one of the places Webflow's MCP server earns its keep. Connect it from an AI client and you can have the Collection and its fields created, then items written and audited, before you write a line of your own sync code. It is available on the free Starter Site plan, so there is no upgrade to clear first. If you would rather not run anything yourself, Zapier can sit between the two products and push new posts into the Collection on a schedule.

Two constraints to plan for. Tagembed does not publish a rate limit for these endpoints, so poll conservatively and cache rather than assuming a documented ceiling exists, and read Tagembed's API documentation for the current parameter set before you code against it. The plan table also lists custom API access under the Agency plan, so confirm your own account has it before you build the sync.

What you can build with Tagembed and Webflow

Most Tagembed builds on Webflow come down to putting other people's words about you on a page where they will be read, and the interesting decisions are about where and how moderated, not about the embed itself.

The patterns that hold up in production:

  • Product-page social proof: Place a moderated Instagram and review feed inside an e-commerce template so shoppers see real customers using the product before they add to cart.

  • Campaign and event hubs: Point a feed at a campaign hashtag and let the page fill itself while the event runs, then archive the posts into the CMS once it ends.

  • Review walls you keep: Pull Google, Yelp and Tripadvisor reviews through the API into a Collection so the content stays on your site even if you drop the widget later.

  • Moderated UGC galleries: Apply approval and keyword rules before anything reaches the widget, which matters on any page your legal or brand team has an opinion about.

Nearly all of these start with a single network and grow from there. If Instagram is the source you care about, see how to embed an Instagram feed on Webflow, which compares the widget route against what you can do with Instagram's own embeds and no third-party tool at all.

Frequently asked questions

  • Your Tagembed plan sets the interval, not Webflow. Its plan table runs from every 4 days on the free plan down to every 15 minutes on its top paid plan. You never republish the Webflow site to get fresh posts.

  • Yes, and moderation happens inside Tagembed before anything reaches your Webflow page. You can approve posts individually, block users, and set keyword and profanity rules. Manual moderation is on every plan; automatic and AI moderation are limited to the higher paid plans.

  • The widget sizes itself to whatever container you put it in, so give the Code Embed element's parent a width and let the feed fill it. Column count, spacing and theme per breakpoint are set in Tagembed's editor rather than in Webflow, since Webflow never sees the widget markup.

  • Create a separate widget in Tagembed for each feed and paste its own snippet into a Code Embed element on the relevant page. Webflow does not limit how many embeds you add. Your Tagembed plan does: one feed on the free plan, up to ten on its top paid plan.

  • The posts are injected by JavaScript after the page loads, so they are not in the HTML Webflow publishes and should not be counted on as ranking content. The embed also adds a third-party script and image requests, so keep large grids away from the top of landing pages where they would affect Largest Contentful Paint.

Tagembed
Tagembed
Joined in

Category

Social media

Description

Tagembed is a social media aggregator that pulls posts and reviews from social networks and review sites into a hosted, moderated widget you can embed on any website. Its plan table lists 10+ sources on the free plan and 15+ on paid plans, with moderation rules and layout themes applied before a feed goes live, plus analytics on it afterwards.

Install app

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


Other Social media integrations

Other Social media integrations

Elfsight Facebook Feed

Elfsight Facebook Feed

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