Web Scraping
Web Scraping Pricing and Options
#How Credits Work
The Scraping API uses a credit system. Credits are added to your account when you subscribe to a monthly package. Credits are only deducted for successful requests.
#Monthly Packages
| Package | Credits | Price |
|---|---|---|
| Starter | 10,000 | $10/month |
| Growth | 55,000 | $50/month |
| Business | 115,000 | $100/month |
| Enterprise | 600,000 | $500/month |
| Scale | 1,250,000 | $1,000/month |
| Subscribe from your dashboard. Credits are added after successful payment. |
#Request Costs
| Request Type | Cost |
|---|---|
| Standard request | 1 credit |
With proxy_country |
2 credits |
With bypass_captcha=true |
3 credits |
#Credit Rules
- Credits are only deducted for successful requests
- Validation failures do not deduct credits
- Requests with no remaining credits return
403
#Request Example
curl -X POST /v1/web \
-H "Authorization: Bearer your-token" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"method": "GET",
"request_headers": {
"Accept": "application/json"
}
}'
#Request Body
{
"url": "https://example.com",
"method": "GET",
"request_headers": {
"Accept": "application/json"
},
"request_body": {
"key": "value"
},
"proxy_country": "us",
"bypass_captcha": "false"
}
#Fields
urlrequired, must start withhttp://orhttps://methodorrequest_method:GET,POST,PUT,PATCH,DELETErequest_headersoptional objectrequest_bodyoptional object, required when usingPOSTproxy_countryoptional proxy country from the configured allow-listbypass_captchaoptional stringtrueorfalse
#Important Rules
If bypass_captcha=true, you cannot also send:
- custom non-GET methods
- custom headers
- request body
proxy_country
#Response
{
"response": "<html>...raw response body...</html>"
}