fetch_page_links
Extract all links from a web page by submitting its URL. Ideal for web scraping and analyzing page content efficiently.
Instructions
Return a list of all links on the page.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "fetch_page_linksArguments",
"type": "object"
}