Browser Links
$0.005per callbrowser.linksExtract all links from a webpage
Endpoint
POST /v1/tools/browser.links/tasksInput
| Field | Type | Required | Description |
|---|---|---|---|
| url | string | yes | URL to extract links from |
| filter | string | no | |
| wait | string | no |
Output
| Field | Type | Description |
|---|---|---|
| count | integer | |
| links | array |
Example
Request
{
"url": "https://example.com",
"filter": "external"
}Response
{
"count": 1,
"links": [
{
"url": "https://iana.org/domains/example",
"text": "More information..."
}
]
}