diff --git a/src/content/docs/browser-run/faq.mdx b/src/content/docs/browser-run/faq.mdx index 13dfa9cbffec5b9..703c0fec035695c 100644 --- a/src/content/docs/browser-run/faq.mdx +++ b/src/content/docs/browser-run/faq.mdx @@ -185,12 +185,14 @@ Yes. If your webpage or PDF requires a font that is not pre-installed, you can l ### Does Cloudflare store or retain the HTML content I submit for rendering? -No. Cloudflare processes content ephemerally and does not retain customer-submitted HTML or generated output (such as PDFs or screenshots) beyond what is required to perform the rendering operation. Once the response is returned, the content is immediately discarded from the rendering environment. +For [Quick Actions](/browser-run/quick-actions/) (except the [`/crawl` endpoint](/browser-run/quick-actions/crawl-endpoint/)), [Puppeteer](/browser-run/puppeteer/), [Playwright](/browser-run/playwright/), and [CDP](/browser-run/cdp/), Cloudflare processes content ephemerally and does not retain customer-submitted HTML or generated output (such as PDFs or screenshots) beyond what is required to perform the rendering operation. Once the response is returned, the content is immediately discarded from the rendering environment. -This applies to all integration methods, including [Quick Actions](/browser-run/quick-actions/), [Puppeteer](/browser-run/puppeteer/), [Playwright](/browser-run/playwright/), and [CDP](/browser-run/cdp/). +The [`/crawl` endpoint](/browser-run/quick-actions/crawl-endpoint/) is an exception. Because crawl jobs run asynchronously, job results (including crawled page content in HTML, Markdown, or JSON format) are stored for 14 days after the job completes, after which the data is deleted. Crawl jobs have a maximum run time of seven days. ### Is there any temporary caching of submitted content? -For [Quick Actions](/browser-run/quick-actions/), generated content is cached by default for five seconds (configurable up to one day via the `cacheTTL` parameter, or set to `0` to disable caching). This cache protects against repeated requests for the same URL by the same account. Customer-submitted HTML content itself is not cached. +For [Quick Actions](/browser-run/quick-actions/) (except the [`/crawl` endpoint](/browser-run/quick-actions/crawl-endpoint/)), generated content is cached by default for five seconds (configurable up to one day via the `cacheTTL` parameter, or set to `0` to disable caching). This cache protects against repeated requests for the same URL by the same account. Customer-submitted HTML content itself is not cached. For [Puppeteer](/browser-run/puppeteer/), [Playwright](/browser-run/playwright/), and [CDP](/browser-run/cdp/), no caching is used. Content exists only in memory for the duration of the rendering operation and is discarded immediately after the response is returned. + +For the [`/crawl` endpoint](/browser-run/quick-actions/crawl-endpoint/), all crawl job results are stored in R2 for 14 days after completion.