ThemeForest
Connect ThemeForest, a web template marketplace by Envato, with Webflow to clone professionally designed templates directly into your dashboard as fully editable sites with pre-built layouts, CMS structures, and components.
ThemeForest's catalog of Webflow-specific templates clones directly into your dashboard as fully editable sites, with pre-built responsive layouts, CMS structures, and styled components ready to modify. The purchase-to-working-site workflow skips file downloads and manual imports.
This fits freelancers on tight deadlines, agencies standardizing delivery, founders launching marketing sites without a design team, and professional services firms building a web presence without agency-level budgets.
How to integrate ThemeForest with Webflow
ThemeForest is a web template marketplace under the Envato Market umbrella, now operated by Shutterstock, Inc. It sells templates across multiple platforms, including WordPress, Shopify, HTML, and Webflow, and you purchase each template individually at a fixed price. The Webflow-specific catalog lives at themeforest.net/category/cms-themes/webflow and contains approximately 21 templates in total, with the genuine Webflow-specific count closer to 16 or fewer. These templates include creative portfolios, restaurants, travel, and NFT collections.

Reach for ThemeForest Webflow templates when you need a production-ready starting point faster than building from scratch. As a freelancer working against a client deadline, you can purchase a template, clone it, and begin customizing within minutes. Agencies use the same workflow to prototype or standardize across client work. The templates ship with responsive layouts, CMS collections, and interaction patterns already configured, so the work shifts from building to refinement.
The ThemeForest-Webflow integration has 2 approaches:
- Cloneable links let you clone a purchased ThemeForest Webflow template into your dashboard by clicking the link included in the template's downloaded files or access details, with no code required. You can also copy elements between sites or save a cloned template as a reusable workspace template, all within the Designer.
- The Data API and Envato API let you sync template catalog data into CMS collections and verify purchase codes, but you'll need server-side development to do it.
Most implementations use the cloneable link method alone. The API path fits narrower use cases such as displaying ThemeForest catalog data on your site.
Clone a ThemeForest Webflow template
ThemeForest Webflow templates ship for cloning into your dashboard rather than as importable HTML or ZIP themes. After purchasing a template on ThemeForest, download the main files, locate the cloneable link inside the documentation, and click it to clone the entire site directly into your dashboard. The cloned site comes with pages, styles, CMS collections, and components. You can use this method to create a new site from a template, but you can't apply it to an existing project. Only templates listed under ThemeForest's CMS Themes > Webflow category support this workflow. You can't import HTML, WordPress, or other platform templates from ThemeForest.
To purchase and clone a ThemeForest Webflow template:
- Go to themeforest.net and find a template in the Webflow category. Click Buy Now and complete checkout.
- Hover over your username and click Downloads. Click the Download button next to the template and select Main File(s). Unzip the downloaded file and locate the cloneable link in the README or documentation folder.
- Open the cloneable link. It follows the format
https://webflow.com/made-in-webflow/website/[template-name]and loads a "Made in Webflow" page. - Click Clone in Webflow. A dialog appears in your dashboard. Enter a name for your new site and click Create site.
- The cloned template opens for editing. Add, alter, or remove text, images, layouts, and design elements to fit your needs.
You're left with a separate editable project based on the purchased template. The cloneable link approach creates a completely independent copy, so any changes you make won't affect the original template. To locate your purchase code for author support, go to Downloads, click Download next to the item, and select License certificate & purchase code.
Copy template elements to an existing site
You can't apply a template to an existing site, but you can clone the template as a separate site, then copy specific sections or components into your existing project using cross-site copy-paste.
To copy elements from a cloned template:
- Clone the ThemeForest template using the cloneable link method above. This creates a separate site in your dashboard.
- Open the cloned template and select the element you want to copy, such as a section, div block, or component. Press Cmd + C (Mac) or Ctrl + C (Windows).
- Open your existing site in a separate browser tab. Navigate to the target page and press Cmd + V (Mac) or Ctrl + V (Windows).
This is a practical workaround when you only need part of a template rather than a full site clone. Keep in mind the documented limitations: variables don't transfer between sites via copy-paste, though styles do. You'll need to recreate CMS links manually in the destination project. Class naming conflicts can occur if both sites use identical class names with different styles. Copy sections one at a time and adjust classes where needed.
Create a shared workspace template
If you run an agency that reuses a ThemeForest template as a starting point for multiple client projects, you can convert it into a shared workspace template. This removes the need to re-clone from ThemeForest for each new engagement.
To create a shared workspace template:
- Clone the ThemeForest template using the cloneable link method.
- Open the cloned site and go to Site settings > General.
- Under Shared Workspace template, click Make template. Enter a name and click Confirm.
This gives you a reusable internal starting point for future builds, but each new client or site still requires a separate ThemeForest license purchase. It speeds up your internal workflow, not licensing.
Each use of this workspace template for a new client requires a separate ThemeForest license purchase. The ThemeForest Regular License covers one single end product. Using the same template for a second client or site without repurchasing violates the license terms.
Build with the Data API and Envato API
If you need to work with ThemeForest data programmatically alongside your site content, both platforms expose REST APIs. This path applies to scenarios such as displaying a ThemeForest template catalog on your site, verifying purchase codes against Envato records, or syncing author sales data into CMS collections. All of these require a middleware server because you can't call Envato's authenticated endpoints from frontend code.
Two constraints apply to every API implementation. First, the Envato Market API has no webhook or event notification system, so any data sync requires scheduled polling. Second, no API endpoint exists to programmatically clone or apply a template. Cloning always happens manually through the browser.
The relevant APIs are:
- The Envato Market API handles catalog searches, item lookups, purchase verification, and sales data retrieval
- The Data API handles CMS collections and item management
- Webhooks trigger real-time events when CMS items change, pages publish, or forms submit
Together, these APIs support data lookup, CMS writes, and outbound event handling on your end, but not automated template cloning.
Sync ThemeForest catalog data to a CMS collection
As a template author or affiliate, you can populate a CMS collection with ThemeForest template data and create a browsable Collection List page on your site. This requires a server-side script that polls the Envato API and writes results to your CMS.
To implement catalog sync:
- Generate an Envato personal token and a Data API token with
cms:readandcms:writescopes. Create a CMS collection with fields for template name (plain text), preview image (image), price (number), URL (link), and description (rich text). - Poll the Envato catalog search endpoint to fetch Webflow-category templates. Use the "Look up a single item" endpoint for full details on each result.
- Map Envato fields to your CMS collection fields and create items via
POST /v2/collections/{collection_id}/items. Publish staged items withPOST /v2/collections/{collection_id}/items/publish. - Schedule the polling job on a cron interval to detect catalog changes. The site publish endpoint (
POST /v2/sites/{site_id}/publish) allows one successful publish per minute.
You end up with a browsable CMS-backed catalog that refreshes on a schedule rather than by webhook. This use case is theoretical, with no documented real-world implementations found. The Envato API rate-limits requests and returns HTTP 429 with a Retry-After header when you exceed thresholds, so your polling script needs to handle backoff gracefully. CMS item limits also apply: the CMS plan supports 2,000 items, and the Business plan supports 10,000.
Verify ThemeForest purchase codes
As a template author, you can build a verification gate where ThemeForest buyers submit a purchase code, your server validates it against Envato's API, and verified records get written to a CMS collection for access control or support tracking.
To implement purchase verification:
- Create a form on your site that collects the buyer's purchase code. Use a Code Embed element or custom code in the page body to submit the code to your middleware server.
- On your server, call Envato's sale or purchase verification endpoints for the submitted code using your personal token, based on the current API docs and explorer. This confirms whether the code corresponds to a valid purchase of your item.
- If verification succeeds, write a record to a CMS collection via
POST /v2/collections/{collection_id}/itemswith the buyer's details and verification status.
You get a verifiable record in your CMS only after your server confirms the code with Envato. This flow requires a middleware server because Envato's authenticated API calls can't run in the browser. Community libraries like node-envato-api and envato.php can reduce the amount of code needed for the Envato API integration on the server side.
What you can build with the ThemeForest Webflow integration
Integrating ThemeForest with Webflow lets you start from a professionally designed, CMS-ready template and ship a customized site without building common page structures from scratch.
- Client-ready portfolio sites: Clone a creative portfolio template, replace the placeholder content with your client's work samples and bio, adjust the color palette and typography, and publish a polished portfolio site within a few days instead of weeks.
- SaaS marketing sites for early-stage startups: Start from a template with pre-built pricing tables, feature sections, and CTA layouts. As a bootstrapped founder without a design budget, you can have a credible, conversion-focused marketing site live before your product launch date.
- Professional services websites: If you run a law firm, financial advisory, or consulting practice, clone a niche-specific template with the right trust signals, service page architecture, and contact forms already in place, then customize the content to reflect your practice.
- Agency starter kits for repeatable delivery: Convert a cloned template into a shared workspace template and use it as a standardized starting point across client engagements. Each project starts from a tested baseline, reducing setup time and maintaining consistent quality.
These use cases share the same core advantage: you start from an editable project instead of a blank canvas. If you need to sync ThemeForest catalog data into your CMS or verify purchase codes for gated content, the API integration path covers those cases.
Frequently asked questions
No. Only templates specifically built for Webflow and listed under ThemeForest's CMS Themes > Webflow category work natively in Webflow. HTML, WordPress, Shopify, and other platform templates from ThemeForest cannot be imported. Building an equivalent site from a non-Webflow template requires complete manual recreation of layouts, styles, responsive breakpoints, and interactions.
Yes. The ThemeForest Regular License covers one single end product. If you build a site for one client using a template, that license transfers to the client on delivery. Using the same template for a second client requires a new purchase. Duplicating the template within the same site for the same client does not require a repurchase. The license FAQ clarifies that freelancers may charge service fees under a Regular License, since the license distinction applies to whether end users pay to access the final product, not whether the designer charges for their labor.
You cannot apply a template directly to an existing site. The workaround is to clone the template as a separate site, then use cross-site copy-paste to move individual sections or components into your existing project. Variables do not transfer between sites, and CMS links must be recreated manually. Copy sections one at a time and review class names for conflicts after pasting.
ThemeForest lists approximately 21 Webflow-specific templates, with most last updated in 2016 and a handful updated between 2023 and 2026. The native template marketplace has over 7,000 templates with active maintenance. ThemeForest templates use a per-item purchase model ($19 to $99.99 for Webflow templates), while the native marketplace offers both free and paid options. Both deliver templates the same way, as cloneable projects that open directly in your dashboard. For the broadest selection and most recently updated options, start with the native marketplace and treat ThemeForest as a supplementary source.
Description
ThemeForest provides Webflow-specific templates that clone into your dashboard through a cloneable link. Each template includes responsive layouts, CMS collections, and styled components ready to customize.
This integration page is provided for informational and convenience purposes only.

Visual Sitemap
Add Visual Sitemap to Webflow to generate styled HTML sitemap pages directly on your canvas — no code required.

htflow
Connect htflow, an AI-powered HTML-to-Webflow conversion tool, with Webflow to transform existing code or AI-generated layouts into native, editable Webflow components.

Claritee
Connect Claritee, an AI-powered wireframing tool, with Webflow to import wireframe layouts directly into your projects with one click, preserving structure while creating editable pages ready for styling.

Adobe Express
Connect Adobe Express with Webflow to create, edit, and publish imag

Octopus.do
Connect Octopus.do, a visual sitemap and information architecture tool, with Webflow to transfer planned site structures into your projects and reduce manual page creation.

LandingRabbit
Connect LandingRabbit, a landing page builder for B2B SaaS teams, with Webflow to convert slide decks, call notes, blog drafts, and other content into Webflow pages through a Designer App.

Modulify
Connect Modulify, an AI-powered design tool, with Webflow to import responsive components built on the Client-First framework through a marketplace app or copy-paste workflow.

Lordicon
Add Lordicon animated icons to Webflow with customizable triggers, colors, and animation behaviors.


