Rendex
Recipe

Archive a Daily Screenshot to Google Drive in n8n

Keep a dated visual record of any page — a pricing page, a dashboard, a competitor's homepage — without lifting a finger. A Schedule Trigger fires, Rendex captures the full page, and the image lands in Google Drive with a timestamped name.

Last updated 2026-07-21

The Problem

Compliance snapshots, marketing-site history, and competitor monitoring all need a reliable, dated image of a page over time. Doing it by hand doesn't scale, and self-hosting a headless browser inside n8n to run on a schedule is fragile and heavy to maintain.

The Solution

A Schedule Trigger runs on your cadence, the Rendex node captures the URL as a full-page PNG in one synchronous step, and a Google Drive node uploads it with a date-stamped filename. Swap Drive for S3 or Dropbox — they all accept the same binary. No browser to babysit, no infrastructure.

How the Workflow Runs

Schedule Trigger

Fires daily (or hourly / weekly / cron)

Rendex

Capture the URL as a full-page PNG

Google Drive

Upload the image, named with today's date

Input → Rendered Output

Left: a Schedule Trigger config set to run daily at 9am against a URL. Right: a full-page screenshot saved to Google Drive as screenshot-2026-07-21.png.

Rendered by Rendex

What You Need

  • A Rendex API key — free tier, 100 renders/month, no card
  • n8n with the Rendex community node installed
  • A Google Drive credential (or AWS S3 / Dropbox)
  • The URL you want to archive

What This Recipe Uses

Full-page capture

Auto-scrolls and captures the entire scrollable page as one image — not just the viewport.

Any cadence

The Schedule Trigger runs hourly, daily, weekly, or on a cron expression — you control how often the snapshot is taken.

Storage-agnostic

The PNG binary drops straight into Google Drive, S3, or Dropbox with a date-stamped filename — swap the storage node freely.

Build It

rendex-capture-node.json
{
  "parameters": {
    "resource": "screenshot",
    "operation": "capture",
    "source": "url",
    "url": "https://example.com",
    "format": "png",
    "binaryPropertyName": "data",
    "additionalOptions": { "fullPage": true, "blockCookieBanners": true }
  },
  "name": "Rendex — Capture URL",
  "type": "n8n-nodes-rendex.rendex",
  "typeVersion": 1
}

100 free API calls/month — no credit card required. Get your API key and start building.

This is the workflow to reach for when you need proof of what a page looked like on a given day. Marketing teams keep a history of the homepage through campaigns; compliance teams snapshot terms and disclosures; competitive-intel teams watch a rival's pricing. Because the Rendex capture is synchronous, the whole run is three nodes and finishes in seconds, and the timestamped filename means every run is a distinct, sortable artifact. Point it at any storage node you already use — Google Drive, S3, Dropbox — and set the schedule to match how fast the page changes. Full-page capture and scheduling are free-tier features, so daily archiving costs one credit per run.

Frequently Asked Questions

Related Resources