For the complete documentation index, see llms.txt. This page is also available as Markdown.

Capture DOM

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.

Parameters

See universal parameters.

Usage

Capture the raw DOM of the current page

"actions": [
    {
      "type": "capture_dom"
    }
]

Example Output

Last updated