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
GET /api/search
Request
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()
Structured response
{
    "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
}

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 options

Cost per 1,000 requests

50x cheaper

than SerpAPI at base tier, and 5x cheaper than Bright Data

Calculate Your Savings

1K 100K 1M 10M
Annual Savings vs Serper.dev

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.

Make your first request today

500 free credits every month. No credit card required.

Get your free API key