Web data.
One clean API.
Get structured JSON from Google Search, Maps, Booking.com, YouTube, LinkedIn, jobs, reviews, and more. Scrappa handles the scraping infrastructure so your team can ship the data.
500 free credits every month after email verification. No credit card required.
- Coverage
- 80+ endpoints
- From
- $0.30 / 1K
- Billing
- Pay as you go
curl "https://scrappa.co/api/search?query=coffee" \
-H "Accept: application/json" \
-H "X-API-KEY: YOUR_API_KEY"
async function searchWeb(query) {
const response = await fetch(
`https://scrappa.co/api/search?query=${encodeURIComponent(query)}`,
{ headers: { 'X-API-KEY': 'YOUR_API_KEY' } }
);
return response.json();
}
searchWeb('coffee').then(console.log);
import requests
response = requests.get(
"https://scrappa.co/api/search",
params={"query": "coffee"},
headers={"X-API-KEY": "YOUR_API_KEY"},
)
data = response.json()
{
"request": {
"endpoint": "/api/search",
"query": "coffee"
},
"results": [
{
"position": 1,
"title": "Blue Bottle Coffee",
"url": "https://bluebottlecoffee.com/",
"snippet": "Fresh coffee, roasted to order."
}
],
"credits_used": 1
}
Start with the data you need
Every endpoint has a stable JSON response, runnable examples, and transparent credit costs.
Need German marketplace data? Explore the Kleinanzeigen API for German classifieds or open the Kleinanzeigen search documentation.
Save up to 98% on API costs
Start free and buy credits only when you need them. Every request has a clear, predictable cost.
See all pricing optionsEffective cost per 1,000 requests at stated pack and plan rates
SerpAPI Starter: $25/month for 1,000 searches ($25/1K). Developer: $75/month for 5,000 searches ($15/1K). Unit rates assume full use of the included searches; monthly bills do not vary with usage.
About 83x lower unit cost
Scrappa's $0.30/1K estimate versus SerpAPI Starter at $25/1K (1,000 searches/month); 5x lower than Bright Data at $1.50/1K.
Calculate Your Savings
SerpAPI shows the monthly cash price of the smallest published Best Effort plan covering this volume. Scrappa shows a normalized unit-rate estimate, not checkout cost: at 100,000 requests, $25 uses the Professional $0.25/1K rate, while the $50 Standard pack covers 100,000 with 180,000 credits. At 1M, $200 uses the Ultimate $0.20/1K rate; the $250 Professional pack covers 1M credits.
Built for production work
The operational details are handled before they become your operational burden.
Consistent responses
Documented schemas keep parsing predictable across 80+ endpoint operations.
Fallbacks included
Provider fallbacks and proxy infrastructure run behind one API instead of inside your application.
Failed requests stay free
Credits are charged for successful data delivery, not for requests that fail.
Explore popular paths
Run a request, inspect endpoint documentation, compare pricing, or connect Scrappa to the tools your team already uses.
Make your first request today
500 free credits every month. No credit card required.