PagePry

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

Getting started

  1. Create an account and get your API key
  2. Follow the Quickstart guide to make your first request
  3. Explore the product-specific documentation for advanced options

How it works

Every PagePry API follows the same pattern:

Request
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"}'
Response
{
  "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.