Browse all tools
find links on website

How to Find All Links on a Website (5 Methods)

How to Find All Links on a Website
Share this article

Frequently Asked Questions

How do I find all the links on a website for free?

The fastest free way to find all links on a website is the Pixellize Link Finder. Enter the site URL and the link you are searching for, choose Whole Website, and the tool crawls up to 2,000 pages. Results show the page URL, anchor text, and link type. You can export everything as CSV or JSON. No account or install needed.

How do I extract all links from a webpage using the browser console?

Open your browser developer tools with F12 (Windows) or Cmd+Option+J (Mac), then paste this into the console: [...document.querySelectorAll("a[href]")].map(a => a.href).join("n"). This returns every absolute URL on the current page. Add .filter(a => a.hostname === location.hostname) to limit to internal links only. The output can be copied directly into a spreadsheet.

What is the difference between internal and external links?

Internal links point to pages on the same domain, for example example.com/about links to example.com/contact. External links point to a different domain, for example example.com/page links to twitter.com. Search engines use internal links to discover and index pages, and to understand how authority flows across a site. Pages with no internal links pointing to them are called orphan pages and are often not indexed.

Can I find all links on a website without installing software?

Yes. The Pixellize Link Finder runs entirely in your browser and crawls up to 2,000 pages of any website without any software install or account. For a single page, the browser console method is another zero-install option that takes about 10 seconds. Chrome extensions like LinkMiner are also install-free if you count browser plugins, though they only work on one page at a time.

How many pages can Pixellize crawl when finding links?

The Pixellize Link Finder crawls up to 2,000 pages per search. You can set your own limit between 1 and 2,000 in the Max Pages field. Crawling stops when it reaches your limit or when it runs out of internal links to follow, whichever comes first. For most small to medium sites, 2,000 pages covers the full site. Larger sites need a dedicated crawling tool like Screaming Frog.

Does the link finder work on JavaScript-rendered websites?

Yes. Unlike BeautifulSoup or wget, the Pixellize Link Finder fetches pages through a server-side renderer that executes JavaScript before extracting links, so dynamically loaded navigation menus and lazy-loaded content are included in results. Python-based static HTML parsers like BeautifulSoup miss these links unless you add a browser automation layer like Playwright.

Written by

Founder and CEO of Pixellize.io, building AI-powered web tools and digital products with a focus on user experience and automation. M.Sc. Zoology, working at the intersection of technology, data analytics, and life sciences.

Scroll to Top