Skip to main content
The get_simplified_html method retrieves a simplified version of the current page’s HTML that has been processed by Narada to optimize it for content extraction and analysis.
Unlike get_full_html, this method returns HTML that has been processed and simplified by Narada, removing unnecessary elements and optimizing the structure for content analysis.

Method Signature

Parameters

timeout
int | None
default:"None"
Maximum time in seconds to wait for the simplified HTML retrieval to complete. If None, uses the default system timeout.

Return Value

Returns a GetSimplifiedHtmlResponse object with the following structure:
html
str
required
The simplified HTML content of the current page as a string, processed and optimized by Narada’s backend for content analysis.

Example