Getting Started
Welcome to the Scraper API. This guide covers everything you need to start extracting data.
Requirements
Base URL
All API requests use the following base URL:
https://app.scrapering.com/api
Your first request
Pass your API key in the Authorization header:
curl -X POST https://app.scrapering.com/api/parsing/url \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "url": "https://scrapering.com", callbackUrl: "YOUR_CALLBACK_POST_ENDPOINT_URL" }'
Receive a response on your callback endpoint
The payload will be structured the following way:
{
"status": "ready",
"scope": "url",
"requestId": "5cfce409-1a30-4181-88eb-75b995499cd0",
"data": {
"url": "https://scrapering.com",
"content": "<html lang=\"en\">...</html>",
"cookies": [],
"success": true,
"time": "3.24"
},
"respondedAt": "2026-01-01T00:00:00.00Z"
}
Next steps
- Authentication — manage API keys, scopes, and rate limits
- Pricing — understand how credits are charged per request
- URL Scraper — full reference for the URL scraping endpoint
- Google SERP Scraper — scrape Google search results
- Yandex SERP Scraper — scrape Yandex search results