Website Screenshot Generator avatar
Website Screenshot Generator
Try for free

No credit card required

View all Actors
Website Screenshot Generator

Website Screenshot Generator

apify/screenshot-url
Try for free

No credit card required

Create a screenshot of a website based on a specified URL. The screenshot is stored as the output in a key-value store. It can be used to monitor web changes regularly after setting up the scheduler.

Do you want to learn more about this Actor?

Get a demo

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "urls": [
8    {
9      "url": "https://www.apify.com/"
10    }
11  ],
12  "waitUntil": "load",
13  "delay": 0,
14  "proxy": {
15    "useApifyProxy": true
16  }
17}
18EOF
19
20# Run the Actor using an HTTP API
21# See the full API reference at https://docs.apify.com/api/v2
22curl "https://api.apify.com/v2/acts/apify~screenshot-url/runs?token=$API_TOKEN" \
23  -X POST \
24  -d @input.json \
25  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 114 monthly users
  • 36 stars
  • 99.5% runs succeeded
  • 7.3 days response time
  • Created in Nov 2018
  • Modified about 2 months ago
Categories