AGENTUTIL
DocsTools Reference

Browser Links

$0.005per call
browser.links

Extract all links from a webpage

Endpoint
POST /v1/tools/browser.links/tasks

Input

FieldTypeRequiredDescription
urlstringyesURL to extract links from
filterstringno
waitstringno

Output

FieldTypeDescription
countinteger
linksarray

Example

Request
{
  "url": "https://example.com",
  "filter": "external"
}
Response
{
  "count": 1,
  "links": [
    {
      "url": "https://iana.org/domains/example",
      "text": "More information..."
    }
  ]
}