SavePage.io API

Development / API Key Intermediate HTTPS CORS
Varies by plan (check documentation)

Overview

SavePage.io provides a RESTful API for capturing full-page screenshots of any desktop or mobile website. Simply send the target URL along with your API key, and receive a screenshot image or a URL pointing to the rendered page. It supports various output formats and viewport sizes, making it useful for monitoring, archiving, or generating visual previews.

💡

Beginner Tip

Pass the capture_url parameter as a URL-encoded string and specify the format (png or jpeg) in your request. Start with desktop screenshots before experimenting with mobile viewports.

Available Data

SavePage.io data via REST API
JSON-formatted response data
Requires API key authentication

Example Response

JSON Response
{
  "id": "Dwu85P9SOIk",
  "urls": {
    "full": "https://images.unsplash.com/photo-...",
    "regular": "https://images.unsplash.com/photo-...?w=1080",
    "thumb": "https://images.unsplash.com/photo-...?w=200"
  },
  "width": 4000,
  "height": 3000,
  "user": {
    "name": "John Doe",
    "username": "johndoe"
  }
}

Field Reference

url The URL of the captured screenshot stored on the server.
status Status of the screenshot capture request.
timestamp ISO 8601 timestamp of when the screenshot was taken.

Implementation Example

const url = "https://www.savepage.io/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

401 Unauthorized Missing or invalid API key in the request
Ensure your API key is passed as the apikey query parameter. Check your dashboard for the correct key.
Timeout / empty screenshot The target website takes too long to load or blocks headless browsers
Try increasing the timeout parameter if supported, or test with a simpler URL like https://example.com first.
400 Bad Request The target URL is not properly URL-encoded or is missing the protocol
Always include https:// or http:// in the URL and encode special characters.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 2/20
🔒 Security 15/15
🛠 Developer XP 17/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS YES
Category Development
Difficulty Intermediate
Verified: 2026-04-04

Similar APIs

View All →