Free tools › Images
Website screenshot
Paste the address; get the first screen as a PNG, at the width you pick.
Files · 0
More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension
How to website screenshot
- Paste the page’s address (or drop an HTML file).
- Pick the screen width and sharpness.
- Press Capture and download the PNG.
What happens to your file
Chromium opens the address at the width you chose, waits for scripts to settle, and captures the first screen — 800 CSS pixels tall — as a PNG; 2× doubles every pixel for retina displays. Requests the page makes pass Fylane’s URL policy: public addresses only.
The capture is the first screen, not the whole page. For everything below the fold, URL to PDF prints the page entire.
Questions
Can I get the full page as an image?
Not yet — the PDF page holds the whole thing. A full-page PNG is on the list.
Cookie banners?
They show, as they would to a first visitor. There is no session, so nothing dismisses them.
Related tools
Do this in code
curl -X POST https://api.fylane.dev/v1/jobs \
-H "Authorization: Bearer $FYLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_id": "<file id>",
"operation": "web.render",
"options": {
"format": "png",
"height": 800,
"url": "https://example.com/page",
"width": 1280,
"scale": 1
}
}'The same operation, web.render — An HTML file or a public URL rendered by Chromium — real CSS, web fonts, scripts — to a PDF (`format: pdf`) or a first-screen screenshot (`format: png`, `width`, `height`, `scale`). Every request the page makes passes the platform’s URL policy: private networks and the metadata service are unreachable. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.