Google Scraping
Google Scraping Pricing and Parameters
#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 |
|---|---|
POST /v1/google-search |
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/google-search \
-H "Authorization: Bearer your-token" \
-H "Content-Type: application/json" \
-d '{
"query": "laravel scraping",
"country": "us",
"page": 1,
"time_range": "month",
"language": "en"
}'
#Request Body
{
"query": "laravel scraping",
"country": "us",
"page": 1,
"time_range": "month",
"language": "en"
}
#Fields
queryrequired stringcountryoptional country code, defaults touspageoptional integer, minimum1time_rangeoptional:hour,day,week,month,yearlanguageoptional:en,ur,es,fr,de,it,pt,ja,ko,zh,ar,hi,ru,tr
#Notes
- results are fixed at 10 per page
- duplicate top URLs are cleaned when the first two parsed results match
- invalid
country,time_range,page, orlanguagereturns422