Now in early access  ·  Free to start, no card needed

Clone any website. Ship it as your own.

Paste a URL and CLONYFY crawls every page with a real browser, captures every asset and API route, then hands you a production-ready Next.js project — in seconds.

Start cloning free See how it works

No credit card required · Free plan includes 3 clones/month

0
Websites cloned
0
Developers signed up
99.9%
Uptime last 90 days
<60s
Average clone time
Trusted by developers at
Vercel
Netlify
Figma
Linear
Notion
Stripe
Loom
Features

Everything you need,
nothing you don't

CLONYFY handles the entire pipeline — crawling, asset rewriting, route detection, and code generation — so you can focus on building.

🌐

Full-site BFS crawler

Follows every same-origin link up to your depth and page limit using real Chromium. Sitemap discovery, auth-page skipping, and tracking-param deduplication built in.

Learn more

Next.js 14 output

Every captured page becomes a route in a real Next.js app with TypeScript, Tailwind, and Prisma pre-configured. Run locally or deploy to Vercel in one click.

Learn more
🗂️

Automatic API detection

Every network request is intercepted and grouped by endpoint. Form POSTs become Prisma models. Fixture JSON keeps stubs working offline, instantly.

Learn more
✏️

Visual page editor

Edit captured pages directly in the browser. Changes save back to source HTML in real time — no build step, no framework knowledge, no friction.

Learn more
🔗

Shareable previews

Generate a password-protected shareable link for any clone. Share work-in-progress with clients or teammates without deploying anything to production.

Learn more
📦

One-click export

Download any project as a ZIP with the complete Next.js structure — with Dockerfile and docker-compose included. Ready to unzip, install, and ship.

Learn more
The editor

A real workspace, not just a zip file

Browse every captured page, tweak HTML directly in the visual editor, manage assets, and share previews — all from one dashboard.

Crawler

A real browser. Not just a scraper.

CLONYFY uses Playwright with full Chromium to render every page exactly as a user sees it — JavaScript, lazy-loading, and all. SPAs are fully supported.

  • Playwright-powered — renders JS-heavy SPAs, not just static HTML
  • SPA-aware — pushState/replaceState patched for complete route coverage
  • robots.txt enforced — respects crawl rules by default
  • Configurable — set depth, concurrency, and page cap
crawler.ts
const browser = await chromium.launch({
headless: true,
args: ['--no-sandbox'],
});
 
// SPA navigation patching
await context.addInitScript(() => {
const push = history.pushState.bind(history);
history.pushState = function (...args) {
push(...args);
window.dispatchEvent(
new CustomEvent('__cloner_nav__')
);
};
});
Generator

Production output, automatically generated.

Every clone produces a full Next.js 14 project with typed API stubs, Prisma models inferred from form data, and fixture JSON — so everything works offline immediately.

  • Catch-all routeapp/[[...slug]] with route-map JSON
  • API stubs — one per detected endpoint, fixture-backed
  • Prisma schema — inferred from form POST field names
  • Docker-ready — Dockerfile + docker-compose included
output/example.com/
app/
├── [[...slug]]/
│ └── page.tsx # catch-all route
└── api/
├── users/route.ts # GET /api/users
└── contact/route.ts # POST /api/contact
 
prisma/schema.prisma # auto-generated
captured-pages/
├── __home__.html
├── __about__.html
└── __pricing__.html
fixtures/GET__api__users.json
public/_assets/a3f92b1c.css
route-map.json # URL → file map
Dockerfile
Testimonials

Developers love it

Used by thousands of developers to prototype faster, pitch clients, and ship more.

★★★★★

"I cloned a competitor's landing page, customized it in the editor, and sent a client proposal in under 20 minutes. This used to take me a full day."

M
Marcus T.
Freelance designer, Berlin
★★★★★

"We use CLONYFY to quickly spin up reference implementations before starting a project. The Next.js output is clean and actually deployable."

S
Sarah K.
Engineering lead, San Francisco
★★★★★

"The API route detection is witchcraft. It automatically inferred our backend schema from network calls and scaffolded the Prisma models. Jaw dropped."

R
Ravi M.
Full-stack dev, London
How it works

From URL to editable project
in four steps

1

Paste a URL

Enter any public website URL. Set your page limit and crawl depth — done. Hit Clone.

2

We capture everything

Playwright crawls every page, downloads assets, intercepts API calls, and rewrites URLs to work locally.

3

Edit in the browser

Use the visual editor to tweak any captured page. Changes persist immediately — no build step.

4

Export and deploy

Download the full Next.js project as a ZIP or deploy directly. Dockerfile included.

Pricing

Start free. Scale when you're ready.

All plans include the full cloner, visual editor, shareable previews, and ZIP export. Upgrade for more clones and higher page limits.

Monthly
Annual Save 20%
Free
$0
forever
Perfect for trying CLONYFY.
  • 3 clones / month
  • Up to 20 pages each
  • Visual preview
  • Basic editor
  • ZIP export
  • Priority processing
Get started
Starter
$9.99
per month
For freelancers and solo builders.
  • 15 clones / month
  • Up to 30 pages each
  • Everything in Free
  • ZIP export
  • Visual editor
  • API access
Get Starter
Most Popular
$19.99
per month
For builders who clone weekly.
  • 50 clones / month
  • Up to 100 pages each
  • Everything in Starter
  • Priority processing
  • Email support
  • Advanced API access
Get Most Popular
Growth
$34.99
per month
For agencies and power users.
  • 100 clones / month
  • Up to 200 pages each
  • Everything in Most Popular
  • API access
  • Priority support
  • Custom output templates
Get Growth
Unlimited
$59.99
per month
Unlimited scale for teams.
  • Unlimited clones
  • Up to 500 pages each
  • Everything in Growth
  • Dedicated support
  • SLA guarantee
  • On-premise option
Get Unlimited
FAQ

Frequently asked questions

CLONYFY is designed for legitimate use cases: prototyping, client pitches, competitive analysis, archival, and reference implementations. You are responsible for complying with each website's terms of service. We enforce robots.txt by default and never crawl at disruptive rates. Always ensure you have permission to capture and use a site's content.
CLONYFY works best on publicly accessible marketing sites, documentation, portfolios, and SaaS landing pages. Sites behind authentication, heavy client-side rendering with private APIs, or those using anti-bot measures may produce partial results. JavaScript-rendered SPAs are fully supported — we use a real Chromium browser for every page.
Most sites clone in under 60 seconds. A site with 50 pages and 150 assets typically completes in 45–90 seconds depending on page complexity and server response times. We cap each page at 120 seconds and run up to 2 pages in parallel by default. Paid users can increase concurrency.
Yes. The generated output is a standard Next.js 14 project. Export it as a ZIP, push to GitHub, and deploy to Vercel, Netlify, Railway, or any other Next.js-compatible host. A Dockerfile and docker-compose.yml are included if you prefer self-hosting.
Clones are stored on the server you run CLONYFY on — either your local machine (when using the desktop app) or your own VPS. We never store your captured content on our infrastructure. Your data stays yours. See our Privacy Policy for details.
The free plan includes 3 clones per month, up to 10 pages each, the full visual editor, shareable previews, and ZIP export — no credit card required. It's the complete product, just with lower limits. Upgrade any time from your dashboard.

Build in a weekend.
Scale to millions.

Start with a free account. Clone your first website in under a minute. No credit card, no setup, no friction.

Free forever plan available · No credit card required

🤖
CLONYFY Support
Online · Usually replies instantly