Extract Links from URL
extract_linksExtract all outbound hyperlinks from a webpage with their anchor text. Useful for crawling, finding subpages, or mapping site sections.
Instructions
Fetch a page and list all outbound hyperlinks (absolute URLs with their anchor text).
Useful for crawling, finding a specific subpage, or mapping a site section.
Args:
url (string): The page to scan.
limit (number): Max links to return, 1-200 (default 50).
Returns a list of { text, href }.
Example: { "url": "https://news.ycombinator.com", "limit": 30 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Page URL to scan for links | |
| limit | No | Max links |