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

  • url required, must start with http:// or https://
  • method or request_method: GET, POST, PUT, PATCH, DELETE
  • request_headers optional object
  • request_body optional object, required when using POST
  • proxy_country optional proxy country from the configured allow-list
  • bypass_captcha optional string true or false

#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>"
}