Website Research

How to Find Out Who Built, Designed, or Created a Website

Whether you're reverse-engineering a competitor, hunting for a web agency to hire, or just satisfying your curiosity, this guide covers every reliable method to find out who designed, built, created, or developed any website — from a one-click tool to deeper manual techniques.

⚡ Quick Answer

The fastest method is to run the domain through a free tech stack checker — it instantly reveals the CMS, theme, framework, and hosting provider, which together fingerprint the builder. For a human name or agency, also check the page footer and run a WHOIS lookup on the domain.

Why people want to know who built a website

People ask this question for a handful of concrete reasons — and the best method to use depends on which one applies to you.

Competitor research. Knowing that a rival is running on Webflow rather than a custom React build tells you their development budget, their time-to-publish speed, and the design constraints they're working within.

Hiring or agency sourcing. You found a website that looks exactly like what you want. Finding out who designed it is the fastest route to hiring the right studio or freelancer.

Migration planning. Before moving your own site to a new platform, checking what stack high-performing sites in your niche use helps you make an informed choice.

Sales prospecting. Web agencies and SaaS vendors often want to know whether a prospect's site is on a platform they can integrate with, migrate away from, or sell adjacent services to.

Security research. Knowing the underlying CMS version or JavaScript framework helps developers and security teams identify vulnerable stacks in their own portfolio or in sites they're auditing.

ℹ️
Is it legal to investigate a website's tech stack?

Reading publicly visible page source code, HTTP response headers, and meta tags on a site you can access normally is entirely legal — no hacking, credential use, or data scraping of private data is involved.

Method 2 — Run a tech stack checker (fastest and most complete)

A dedicated tech stack detection tool is the single most reliable method because it analyses dozens of signals simultaneously — HTTP headers, cookie names, JavaScript globals, meta tags, DNS records, and CDN fingerprints — in under five seconds.

It answers not just "who built this?" but "what are they running, who hosts it, what analytics are they using, and what CDN serves their assets?" — a full intelligence picture in one click.

Free Tool

Try the EIGE Website Tech Stack Checker

Paste any domain and get the full technology fingerprint — CMS, framework, CDN, analytics, and more — in seconds. No sign-up required.

Run a free tech stack scan →

What the tech stack checker reveals

Each detected technology is categorised and explained, giving you context rather than just a list of names.

Signal typeWhat it tells youExample output
CMS / BuilderThe platform the site was built and published onWordPress 6.5, Webflow, Shopify
Theme / TemplateThe visual framework and sometimes the designer who made itDivi, Kadence, Flatsome
JavaScript frameworkThe frontend stack, pointing to the dev's skill setReact, Next.js, Vue, Alpine.js
Hosting / CDNWhere the site lives and how it's deliveredCloudflare, Vercel, WP Engine
AnalyticsWhat measurement tools the team usesGA4, Plausible, Mixpanel
Marketing stackCRM, email, chatbot integrationsHubSpot, Intercom, Klaviyo
💡
Pro tip — the theme name points to the designer

If the stack checker returns a premium theme like "Avada" or a niche Shopify theme like "Prestige", searching that theme name on Behance, Dribbble, or the theme author's partner page surfaces the designer or agency who customised it.

Method 3 — Read the page source code

Inspecting page source is the manual version of what a tech stack tool does automatically — it takes longer but teaches you to read the signals yourself.

Step 1

Open the page source

In any browser, navigate to the site and press Ctrl + U on Windows or Cmd + Option + U on Mac. Alternatively, right-click any blank area of the page and select View Page Source.

Step 2

Search for the generator meta tag

Press Ctrl + F and search for generator. The generator meta tag — when present — directly names the platform. WordPress inserts <meta name="generator" content="WordPress 6.x">. Drupal, Joomla, and many page builders do the same.

Step 3

Search for platform-specific strings

Search for wp-content (WordPress), shopify (Shopify), wixsite (Wix), webflow (Webflow), or squarespace (Squarespace) — these strings appear in asset URLs and script paths and survive even when the generator tag is removed.

⚠️
Generator tags are often stripped

Security-conscious WordPress installs and professionally configured sites frequently remove the generator tag with a single line of code. Absence of the tag does not confirm a custom build — use a tech stack checker to look at all signals simultaneously.

Method 4 — WHOIS lookup

A WHOIS lookup queries the public registry record for a domain, which can expose the registrant name, registration date, name servers, and hosting provider — sometimes pointing directly to the developer or agency that set up the account.

Step 1

Run the lookup

Go to who.is, lookup.icann.org, or type whois domain.com in your terminal. Enter the domain without the https:// prefix.

Step 2

Read the registrant and name server fields

The registrant field shows who registered the domain — sometimes this is the agency that set up the site for the client, especially on older registrations made before GDPR/CCPA privacy shields became standard. The name servers point to the DNS provider and often the hosting platform (e.g., ns1.cloudflare.com = Cloudflare, ns.vercel-dns.com = Vercel).

Limitation: Since GDPR came into effect in 2018, most registrars in Europe and many globally now redact personal registrant data behind privacy proxy services, so the registrant field often returns "Redacted for Privacy" rather than a person's name.

Method 5 — LinkedIn and portfolio research

Once you have a company name, CMS, or agency name from the methods above, LinkedIn and portfolio platforms let you find the specific humans who built the site.

Step 1

Search LinkedIn for "website designer" + company name

Employees often list the companies they built sites for in their experience or featured sections. Searching "[Company Name]" web designer or "[Company Name]" Webflow developer on LinkedIn surfaces past and current contractors and employees.

Step 2

Search Behance and Dribbble

Designers frequently publish the finished site in their portfolio. Searching the company or brand name on Behance, Dribbble, or Awwwards can directly surface the original design submission along with the studio credit.

Step 3

Check the Wayback Machine

Early archived versions of a site at web.archive.org often still contain footer credits, generator tags, and uncleaned asset paths that were later removed — especially useful for custom builds where all traces have since been erased.

Already know the stack? Check the brand's AI visibility. See if AI systems like ChatGPT and Google AI actually know about this website and what they say.
Run AI scan →

How to identify platforms from their fingerprints

Each major platform leaves distinctive traces in the HTML, asset paths, and cookie names — once you learn these, you can identify the builder with a 10-second manual inspection.

WordPress
wp-content/
wp-includes/
?ver=6.x
Found in asset URLs. Plugins and themes are always under /wp-content/.
Shopify
cdn.shopify.com
shopify.js
Shopify.shop
All product images are served from the Shopify CDN domain.
Webflow
assets.website-files
webflow.js
wf-form-
Webflow sites export with highly distinctive CSS class names and form IDs.
Squarespace
static1.squarespace
squarespace-cdn
SQSUtils
Squarespace injects its CDN domain into every image and asset path.
Wix
static.wixstatic.com
wix-bolt
WixHeader
Wix renders in a proprietary React-like runtime visible in the JS globals.
Next.js / Vercel
_next/static/
__NEXT_DATA__
vercel.app
Custom-built React apps deployed to Vercel — points to an in-house dev team.

Method comparison: which approach should you use?

Each method has a different cost in terms of time, skill, and the specificity of what it reveals — use this table to pick the right one for your goal.

Method Speed Cost Reveals platform? Reveals human/agency? Skill required
Tech stack checker Seconds Free ✓ Always ✓ Via theme/agency None
Footer inspection Seconds Free ✓ Sometimes ✓ Sometimes None
Page source / DevTools 2–5 min Free ✓ Usually ✗ Rarely Basic
WHOIS lookup 1–2 min Free ✓ Via nameservers ✓ Pre-GDPR sites Low
LinkedIn / portfolio 10–30 min Free ✗ Indirect ✓ Best for this Low
Wayback Machine 5–15 min Free ✓ Historical ✓ Old credits Low

Recommended workflow

  • Start with the tech stack checker to identify the platform and CMS in seconds.
  • Scan the footer while the tool runs — it costs nothing extra.
  • If you need a person's name, search LinkedIn using the platform and company name together.
  • For legacy or custom-built sites, check the Wayback Machine for old footer credits before diving into source code.

What about custom-coded websites?

Custom-built sites — those hand-coded in frameworks like Next.js, Nuxt, SvelteKit, or plain HTML/CSS — are the hardest to attribute because they deliberately leave no platform fingerprint.

Signals that point to a custom build

If the tech stack checker returns no recognised CMS but identifies React, Vue, or Angular as the frontend framework, alongside a cloud provider like Vercel, Netlify, or AWS, the site was almost certainly built by an in-house developer or specialist agency rather than a platform builder.

How to find the developer anyway

GitHub. Some companies host their frontend in a public GitHub repository — search the company name on GitHub and look for a repository named after the site or the company's main product.

Code comments. Custom builds sometimes contain developer email addresses, GitHub usernames, or agency names in HTML comments or JavaScript source files — search the page source for <!-- and read any comments present.

Open Graph and Twitter card credits. Some developers include their studio's Twitter handle in the twitter:site or og:site_name tags as a form of quiet attribution.

SSL certificate. The organisation field of the SSL certificate occasionally names the agency that set up TLS — check via your browser's padlock icon → Certificate → Details.

Detect any website's full technology stack instantly. CMS, framework, CDN, analytics, and more — free, no sign-up.
Try the tech stack checker →
Also Free

Does AI know the website you just researched?

Once you know who built a site, check whether AI systems like ChatGPT, Google AI, and Meta AI actually know about that brand — and what they're saying about it.

Check AI brand awareness → Tech stack checker

Frequently asked questions

How do I find out who designed a website?
The quickest route is a combination of three checks: look at the footer for a design credit, run the domain through a free tech stack checker to identify the theme or page builder (which often points to the designer), and search the agency or theme name on LinkedIn or Dribbble to find the specific person or studio.
Can you tell who built a website just from its URL?
Not in most cases. The URL alone tells you the domain name and sometimes the hosting environment (e.g., mysite.webflow.io or mysite.myshopify.com on unmasked subdomains), but a custom domain gives nothing away. A WHOIS lookup on that domain and a tech stack scan are the next steps.
What is the fastest free way to find out what platform a website uses?
Run the domain through the AI Citation Scan tech stack checker — it analyses the full fingerprint and returns a categorised breakdown in under five seconds, with no account or browser extension required.
Is it legal to check the tech stack of someone else's website?
Yes. Reading publicly accessible page source, HTTP headers, and meta tags constitutes normal web browsing — no authentication is bypassed and no private data is accessed. Commercial tools like BuiltWith and Wappalyzer have operated lawfully on this basis for over a decade.
Can I find out who developed a custom-coded website?
Custom builds are harder to attribute, but checking for an open GitHub repository, reading HTML comments in the page source, inspecting the SSL certificate's organisation field, and searching the Wayback Machine for early versions that may still contain footer credits are all worth trying before giving up.
Why doesn't the generator meta tag always show the CMS?
Any developer can remove the generator tag with one line of code — it's a common security hardening step because advertising your CMS version tells attackers exactly which vulnerabilities to probe. A proper tech stack checker reads dozens of other signals that cannot be easily removed, making it more reliable than the generator tag alone.
What does the tech stack tell me about who designed the site?
The CMS and theme combination is a strong designer fingerprint. Agencies typically specialise: a Webflow build points toward a UX-focused studio, a Divi or Elementor build suggests an independent WordPress freelancer, and a headless Next.js + Contentful stack points toward a larger technical agency. The theme name itself — if it's a premium commercial theme — can be searched on the theme marketplace to find its author and any certified customisers.
Does WHOIS still show who registered a domain after GDPR?
For most commercial domains registered since 2018, the registrant's personal details are redacted and replaced by a privacy proxy service. However, the registrar name, registration date, name servers, and sometimes the abuse contact email are still visible — and the name server data often points to the hosting platform or CDN, narrowing down the builder significantly.
Two Free Tools

Ready to investigate any website?

Identify the full technology stack in seconds, or check whether AI systems recognise the brand behind it.

Tech stack checker → AI brand awareness check →