AGENTUTIL
DocsTools Reference

Browser Content

$0.005per call
browser.content

Get fully rendered HTML content (JavaScript executed)

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

Input

FieldTypeRequiredDescription
urlstringyesURL to render
waitstringno

Output

FieldTypeDescription
htmlstring
titlestring
bytesinteger

Example

Request
{
  "url": "https://example.com",
  "wait": "idle"
}
Response
{
  "html": "<!DOCTYPE html>...",
  "title": "Example Domain",
  "bytes": 12345
}