Skip to content

Get All Links

What it does: Extracts all links from a webpage, giving you URLs and link text to analyze site structure, find related content, or build automated navigation workflows.

NameTypeDescriptionRequiredDefault
Include External LinksBooleanExtract links to other websitesNotrue
Include Internal LinksBooleanExtract links within the same siteNotrue
Max LinksNumberMaximum number of links to extractNo1000
NameTypeDescription
linksArrayList of all found links with URLs and text
totalLinksNumberTotal number of links found
internalLinksArrayLinks within the same website
externalLinksArrayLinks to other websites

Competitor Analysis Extract all links from competitor websites to understand their content strategy and partnerships.

Site Navigation Mapping Discover all internal links to understand website structure and create automated navigation workflows.

Link Building Research Find external links on relevant websites to identify potential partnership or outreach opportunities.

  1. Navigate to the webpage you want to analyze
  2. Configure link types - choose internal, external, or both
  3. Run the workflow - the node finds all links on the page
  4. Process the links with other nodes like navigation or analysis

Simple Example:

{
"includeExternalLinks": true,
"includeInternalLinks": true,
"maxLinks": 500
}
🔍 Technical Details

Link Detection: The node finds all clickable links (<a> tags) on the page and extracts their URLs and visible text.

Link Classification: Links are automatically classified as internal (same domain) or external (different domain).

URL Processing: Relative URLs are converted to full URLs for easier processing.

Limitations:

  • Cannot detect links created by JavaScript after page load
  • Some dynamic navigation may not be captured
  • Very large pages may hit the link limit

Site Analysis:

{
"includeExternalLinks": true,
"includeInternalLinks": true,
"maxLinks": 0
}

Navigation Discovery:

{
"includeExternalLinks": false,
"includeInternalLinks": true,
"maxLinks": 100
}

Partnership Research:

{
"includeExternalLinks": true,
"includeInternalLinks": false,
"maxLinks": 200
}

Common Issues:

  • No links found? The page might use JavaScript navigation - try waiting for the page to fully load
  • Missing some links? Dynamic menus or hidden navigation may not be captured
  • Too many irrelevant links? Set a lower max limit or filter results with other nodes