Ads-free website screenshot creator avatar

Ads-free website screenshot creator

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Ads-free website screenshot creator

Ads-free website screenshot creator

Capture clean, full-page screenshots of any website — free of cookie consent banners, ads, and pop-ups. Get regional versions of pages by selecting the browser language and the country of the exit IP address.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Dennis

Dennis

Maintained by Community

Actor stats

1

Bookmarked

3

Total users

2

Monthly active users

7 days ago

Last modified

Share

Ads-free Website Screenshotter

Capture clean, full-page screenshots of any website — free of cookie consent banners, ads, and pop-ups. Get regional versions of pages by selecting the browser language and the country of the exit IP address.

Features

  • Clean screenshots — the browser runs through a residential proxy network with ad-blocking, so cookie consent dialogs and advertising banners do not appear in the output
  • Full-page capture — scrolls the entire page before taking the screenshot so lazy-loaded images and content are fully rendered
  • Regional targeting — set a two-letter country code (country) to route traffic through a residential IP in that country, and set acceptLanguage to match the local language; together they produce authentic regional versions of any page
  • Static thumbnail — always generated alongside the full screenshot; a small PNG cropped from the top of the page
  • Animated thumbnail — optional animated GIF that scrolls through the entire page, giving a compact visual preview of the full content

Input

FieldTypeDefaultDescription
urlstringRequired. URL of the page to screenshot
countrystringDETwo-letter country code for the proxy exit IP (e.g. US, GB, FR)
acceptLanguagestringen-US,en;q=0.9Value of the Accept-Language header sent to the page
viewportWidthinteger1920Browser viewport width in pixels (800–3000)
viewportHeightinteger1080Browser viewport height in pixels (800–3000)
fullPagebooleantrueCapture the entire scrollable page; disable for viewport-only
thumbWidthinteger256Thumbnail width in pixels (32–512). If only one dimension is given, the other is calculated from the viewport ratio
thumbHeightinteger256Thumbnail height in pixels (32–512)
animatedThumbnailbooleanfalseGenerate an animated GIF thumbnail that scrolls through the full page

Output

Each run produces one dataset record and three files in the key-value store:

{
"url": "https://example.com",
"screenshotUrl": "https://api.apify.com/...",
"thumbnailUrl": "https://api.apify.com/...",
"animatedThumbnailUrl": "https://api.apify.com/...",
"capturedAt": "2024-01-15T12:00:00.000Z"
}
KeyFormatDescription
screenshotPNGFull-page or viewport screenshot
thumbnailPNGStatic thumbnail cropped from the top of the page
thumbnail_animatedGIFAnimated scrolling thumbnail (only when animatedThumbnail is enabled)

Regional screenshots example

To get a German version of a page:

{
"url": "https://example.com",
"country": "DE",
"acceptLanguage": "de-DE,de;q=0.9"
}

To get a French version:

{
"url": "https://example.com",
"country": "FR",
"acceptLanguage": "fr-FR,fr;q=0.9"
}

Animated thumbnail

When animatedThumbnail is enabled, the actor generates a looping GIF that scrolls vertically through the entire page. The animation pauses at the top, at each viewport-height interval, and at the bottom — making it easy to skim long pages at a glance.

The GIF dimensions match the static thumbnail dimensions (thumbWidth × thumbHeight).