๐Ÿš€ SEO Image Optimizer & Site Audit avatar
๐Ÿš€ SEO Image Optimizer & Site Audit
Under maintenance

Pricing

from $5.00 / 1,000 results

Go to Apify Store
๐Ÿš€ SEO Image Optimizer & Site Audit

๐Ÿš€ SEO Image Optimizer & Site Audit

Under maintenance

Scans your entire website, detects heavy images, and generates optimized WebP versions ready for download. Includes n8n integration support.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Ben Morin

Ben Morin

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

๐Ÿš€ WebP Whole Site Optimizer & Asset Generator

Stop losing SEO points due to heavy images. This Actor scans your website, identifies heavy assets (>50kb), and automatically generates optimized WebP versions hosted on a public link.

๐Ÿค– API & Automation Ready (n8n, Make, Zapier)

This Actor is designed to be the backend of your Image Optimization Workflow.

  1. Schedule this Actor to run weekly via Apify API.
  2. Connect to n8n or Make.
  3. Download the downloadOptimizedWebP link from the dataset JSON.
  4. Upload automatically to your CMS or Google Drive.

โœจ Features

  • Smart Deduplication: Scans the whole site but processes each unique image only once (no duplicate logos!).
  • Asset Generation: Provides a direct download link for the optimized WebP file.
  • Privacy First: Images are processed in RAM and stored temporarily.

๐Ÿ“Š Output Example

You get a clean JSON/Excel list of unique files to replace:

Original ImageOptimized SizeSavingsDownload Link
hero.jpg45kb60%[Link]

๐Ÿงฉ n8n Integration Example

Want to automate this? Here is a simple n8n workflow snippet to trigger this Actor and get the results.

Copy and paste this JSON directly into your n8n editor:

{
"nodes": [
{
"parameters": {},
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"actorId": "dynamic_warrior/webp-optimizer",
"jsonParameters": "{\"startUrl\": \"https://example.com\"}"
},
"name": "Apify",
"type": "n8n-nodes-base.apify",
"typeVersion": 1,
"position": [450, 300],
"credentials": {
"apifyApi": {
"id": "YOUR_CREDENTIAL_ID",
"name": "Apify account"
}
}
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Apify",
"type": "main",
"index": 0
}
]
]
}
}
}