Skip to main content

Overview

The Capture Website Screenshot block takes a screenshot of any webpage and returns a hosted image URL. Use it for visual documentation, competitor monitoring, design reviews, or feeding images to AI for visual analysis.

Configuration

URL

Enter the URL of the webpage to capture. This field supports placeholders for dynamic URLs. Examples:
  • Static URL: https://example.com/landing-page
  • From search results: {{step_1.output.organic[0].link}}
  • From sitemap: {{current}}

Screenshot Type

Choose how much of the page to capture. Default: Full Page

Wait Time (Optional)

Time to wait before capturing the screenshot, in milliseconds. Use wait time when:
  • Page has animations that need to complete
  • Content loads dynamically after initial page load
  • Lazy-loaded images need time to appear
  • JavaScript renders content after page load
Examples:
Start without wait time. Add it only if screenshots are missing expected content.

Output

The block returns a URL string pointing to the captured screenshot image.

Output Example

Accessing the Screenshot

Get screenshot URL:
Use in HTML:
Use in Markdown:

Using Screenshots with AI

Screenshots can be passed to LLM blocks that support vision capabilities for visual analysis. Example prompt for LLM block:

Best Practices

  • Use Viewport for faster captures when you only need above-the-fold content
  • Add wait time for JavaScript-heavy sites that load content dynamically
  • Combine with Loop block to capture screenshots of multiple pages
  • Use Full Page for complete documentation of long pages
  • Test on a single URL before running bulk screenshot workflows

Common Use Cases


Example Workflow: Competitor Visual Analysis

Capture and analyze competitor landing pages:
  1. Google Sheets Block: Read list of competitor URLs
  2. Loop Block: Process each URL
  3. Capture Website Screenshot Block:
    • URL: {{current.url}}
    • Type: Viewport
    • Wait Time: 2000
  4. LLM Block: Analyze screenshot for design patterns
  5. Google Sheets Block: Store URL, screenshot link, and analysis

Example Workflow: Page Archive

Create visual archives of your website pages:
  1. Get URLs from Sitemap Block: Extract all page URLs
  2. Loop Block: Process each URL
  3. Capture Website Screenshot Block:
    • URL: {{current}}
    • Type: Full Page
  4. Google Sheets Block: Log URL and screenshot URL with timestamp

Troubleshooting


What’s Next

Now that you understand the Capture Website Screenshot block: