Skip to content

Get All Images

What it does: Finds and extracts all images from a webpage, giving you URLs, descriptions, and details about every image for analysis or downloading.

NameTypeDescriptionRequiredDefault
Include Hidden ImagesBooleanExtract images that aren’t visibleNofalse
Include Background ImagesBooleanExtract CSS background imagesNotrue
Max ImagesNumberMaximum number of images to extractNo500
NameTypeDescription
imagesArrayList of all found images with URLs and details
totalImagesNumberTotal number of images found
imageTypesObjectCount of different image formats (JPG, PNG, etc.)
totalSizeNumberEstimated total size of all images

Content Audit Extract all images from your website to check for missing alt text, oversized files, or broken image links.

Competitor Analysis Study what types of images competitors use and how they organize their visual content.

Media Collection Gather images from research sources or inspiration sites for design projects (respecting copyright).

  1. Navigate to the webpage with images you want to extract
  2. Configure extraction options - choose what types of images to include
  3. Run the workflow - the node finds all images on the page
  4. Process the results with other nodes for analysis or downloading

Simple Example:

{
"includeHiddenImages": false,
"includeBackgroundImages": true,
"maxImages": 100
}
🔍 Technical Details

What it finds:

  • Regular images (<img> tags)
  • CSS background images
  • SVG graphics and icons
  • Images in picture elements and responsive sets
  • Base64 encoded images (optional)

Image Information:

  • Full URLs for downloading
  • Alt text and descriptions
  • Dimensions (width and height)
  • File format and estimated size
  • Visibility status

Performance:

  • Processes up to 500 images efficiently
  • Larger collections may take longer
  • Background images require additional processing time

Limitations:

  • Cannot access images that require login
  • Some dynamically loaded images may be missed
  • File sizes are estimates based on dimensions

Complete Image Audit:

{
"includeHiddenImages": true,
"includeBackgroundImages": true,
"maxImages": 0
}

Visible Images Only:

{
"includeHiddenImages": false,
"includeBackgroundImages": false,
"maxImages": 50
}

Design Research:

{
"includeHiddenImages": false,
"includeBackgroundImages": true,
"maxImages": 200
}

Common Issues:

  • No images found? The page might still be loading - try waiting before extraction
  • Missing some images? Enable “Include Hidden Images” and “Include Background Images”
  • Too many results? Set a lower “Max Images” limit or filter by image type