🚀 SEO Image Optimizer & Site Audit avatar

🚀 SEO Image Optimizer & Site Audit

Pricing

from $5.00 / 1,000 results

Go to Apify Store
🚀 SEO Image Optimizer & Site Audit

🚀 SEO Image Optimizer & Site Audit

⚡Enter any URL, crawl all pages, and download optimized WebP versions in one click. Scans full websites to detect heavy images (>50kb) and converts them to WebP. Reduce image size by 50-80% without quality loss.

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

24 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
}
]
]
}
}
}