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 optionsCost per 1,000 requests
50x cheaper
than SerpAPI at base tier, and 5x cheaper than Bright Data
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.