extract_links
Fetch a webpage and return its de-duplicated absolute URLs, with optional filtering by same domain, regex pattern, and result limit.
Instructions
Fetch a page and return its links (de-duplicated, absolute URLs).
same_domain: keep only links on the same host as url.
pattern: keep only links whose URL matches this regular expression.
limit: maximum number of links to return (1-2000).
Each link is {"url": ..., "text": ..., "nofollow": bool}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| limit | No | ||
| pattern | No | ||
| obey_robots | No | ||
| same_domain | No |