Overview
Web data APIs that just work. One API key, one dashboard, no infrastructure to manage.
PagePry gives you simple HTTP APIs for tasks that normally require running browsers, managing proxies, and handling infrastructure. Send a request, get structured data back.
Products
Web Scraping
Send a URL, get fully rendered HTML. Handles SPAs, server-rendered pages, and static HTML.
Screenshots
Capture full-page or viewport screenshots in PNG, JPEG, or WebP. Coming soon.
SERP API
Structured search engine results from Google, Bing, and more. Coming soon.
Getting started
- Create an account and get your API key
- Follow the Quickstart guide to make your first request
- Explore the product-specific documentation for advanced options
How it works
Every PagePry API follows the same pattern:
curl -X POST https://api.pagepry.com/v1/scrape \
-H "x-api-key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'{
"success": true,
"html": "<!DOCTYPE html><html>...</html>",
"metadata": {
"statusCode": 200,
"resolvedUrl": "https://example.com/",
"loadTimeMs": 847,
"fromCache": false
}
}All APIs use the same authentication, credit system, and error format.

