Get All Links
Get All Links
Section titled “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.
What Goes In
Section titled “What Goes In”| Name | Type | Description | Required | Default |
|---|---|---|---|---|
| Include External Links | Boolean | Extract links to other websites | No | true |
| Include Internal Links | Boolean | Extract links within the same site | No | true |
| Max Links | Number | Maximum number of links to extract | No | 1000 |
What Comes Out
Section titled “What Comes Out”| Name | Type | Description |
|---|---|---|
| links | Array | List of all found links with URLs and text |
| totalLinks | Number | Total number of links found |
| internalLinks | Array | Links within the same website |
| externalLinks | Array | Links to other websites |
Real-World Examples
Section titled “Real-World Examples”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.
How to Use It
Section titled “How to Use It”- Navigate to the webpage you want to analyze
- Configure link types - choose internal, external, or both
- Run the workflow - the node finds all links on the page
- 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
Try It Yourself
Section titled “Try It Yourself”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
What’s Next?
Section titled “What’s Next?”- Navigate to Link - Visit the links you’ve extracted
- Get All Text - Extract content from the linked pages
- Form Filler - Fill forms on the pages you navigate to