Block 1 - Note: Webhook Input
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This n8n template enables you to instantly generate high quality screenshots of any specified public URL by simply sending a webhook request. It’s an indispensable tool for developers, content crea...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.if, n8n-nodes-base.respondtowebhook
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by ist00dent.
Original n8n.io sourceThis n8n template enables you to instantly generate high-quality screenshots of any specified public URL by simply sending a webhook request. It’s an indispensable tool for developers, content creators, marketers, or anyone needing on-demand visual captures of web pages without manual intervention, all while including crucial security measures.
This template includes a dedicated Validate URL for SSRF node to mitigate Server-Side Request Forgery (SSRF) vulnerabilities. SSRF attacks occur when an attacker can trick a server-side application into making requests to an unintended location. Without validation, an attacker could potentially use your n8n workflow to scan internal networks, access sensitive internal resources, or attack other services from your n8n server.
The validation checks for:
While this validation adds a significant layer of security, always ensure your n8n instance is properly secured and updated.
To use this template, you will need:
When you trigger the webhook, send a POST request with a JSON body structured as follows:
{
"url": "https://www.example.com"
}
If the URL is valid, the workflow will return the JSON response directly from the ScreenshotMachine API. This response typically includes information about the generated screenshot, such as the URL to the image file, success status, and other metadata:
{
"status": "success",
"hash": "...",
"url": "https://www.screenshotmachine.com/...",
"size": 12345,
"mimetype": "image/jpeg"
}
If the URL is invalid or blocked by the security validation, the workflow will return an error response similar to this:
{
"status": "error",
"message": "Access to private IP addresses is not allowed for security reasons."
}
Import Workflow: In your n8n editor, click "File" > "Import from JSON" and paste the provided workflow JSON.
Configure Webhook Path:
Add ScreenshotMachine API Key:
Double-click the Take Screenshot node.
In the 'URL' parameter, locate YOUR_API_KEY and replace it with your actual API key obtained from ScreenshotMachine.
Example URL structure: http://api.screenshotmachine.com/?key=YOUR_API_KEY&url={{ $json.validatedUrl }}
Activate Workflow: Save and activate the workflow.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Generate website screenshots on-demand with ScreenshotMachine API via webhooks |
|---|---|
| Complexity | intermediate |
| Nodes | 12 |
| Categories | Content Creation |
| Author | ist00dent |
| Published | 02 Jun 2025 |
Use the JSON export at /data/workflows/4594/4594.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This n8n template enables you to instantly generate high quality screenshots of any specified public URL by simply sending a webhook request. It’s an indispensable tool for developers, content crea...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation use case.