📸

Download Screenshot

Download a stored screenshot object by name

GET 1 credit /v1/screenshot/download/{object_name}
curl "https://scrape.toolkitapi.io/v1/screenshot/download/screenshots/example.png" \
  -H "X-API-Key: YOUR_KEY" -o screenshot.png
import httpx

resp = httpx.get(
    "https://scrape.toolkitapi.io/v1/screenshot/download/screenshots/example.png",
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/screenshot/download/screenshots/example.png", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response 200 OK
Binary image response

Try It Live

Live Demo

Description

Download a stored screenshot object by name

How to Use

1

1. Provide `object_name` from a screenshot capture response. 2. Save the binary response to disk.

About This Tool

Downloads a previously captured screenshot object.

Start using Download Screenshot now

Get your free API key and make your first request in under a minute.