get-rendered-html
Fetch fully rendered HTML from a URL, including JavaScript-generated content, for web pages requiring client-side rendering. Ideal for SPAs and dynamic web applications.
Instructions
Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL of the target web page (ordinary HTML including JavaScript, etc.). |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL of the target web page (ordinary HTML including JavaScript, etc.).",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}