Capture DOM
Last updated
Type: capture_dom
This action will capture and return the site's raw DOM, which you can then extract data from on your end.
For common AI scenarios, you may find that this returns too much data, so we have provided a generate_simplified_dom , an action that distills the DOM to only the important elements.
See universal parameters.
Capture the raw DOM of the current page
"actions": [
{
"type": "capture_dom"
}
]Last updated