8 Google product APIs with structured JSON responses. SERP results, Maps places & reviews, News articles, Hotels, Trends, Jobs, Shopping, Patents.
{
"search_information": {
"total_results": 2840000000,
"time_taken": 0.31
},
"ai_overview": {
"text_blocks": [{
"type": "paragraph",
"snippet": "Web scraping is the process of..."
}]
},
"organic_results": [{
"position": 1,
"title": "Web Scraper - The #1 web scraping extension",
"link": "https://webscraper.io/",
"snippet": "The most popular web scraping extension..."
}, ...]
"related_questions": [{ "question": "Is web scraping illegal?" }]
}Structured JSON responses across 8 Google products. No HTML parsing or browser automation needed.
GET /v1/google/searchGoogle web search — organic results, ads, knowledge graph, AI overview, People Also Ask
GET /v1/google/maps/searchFind places on Google Maps by keyword, location, and category
GET /v1/google/maps/placeFull place details including hours, contact info, ratings, and attributes
GET /v1/google/maps/reviewsUser reviews for any place with rating, text, and reviewer info
GET /v1/google/maps/photosPhoto gallery URLs and metadata for any Google Maps place
GET /v1/google/news/searchGoogle News search results with headlines, sources, and publication times
GET /v1/google/news/topicsTop stories grouped by topic — business, tech, sports, health, and more
GET /v1/google/news/trendingWhat's trending on Google News right now, by country and language
GET /v1/google/hotels/searchHotel listings with prices, ratings, amenities, and availability by date
GET /v1/google/hotels/detailsFull hotel details with room types, policies, photos, and reviews
GET /v1/google/trends/interestSearch interest over time for any keyword or topic from Google Trends
GET /v1/google/trends/regionsGeographic breakdown of search interest by country or sub-region
GET /v1/google/trends/relatedRising and top related topics and queries for any search term
GET /v1/google/trends/trendingDaily and real-time trending searches on Google by country
GET /v1/google/jobs/searchJob postings from Google Jobs with title, company, location, and description
GET /v1/google/shopping/searchGoogle Shopping product listings with prices, merchants, and ratings
GET /v1/google/shopping/productFull product details with all sellers, price history, and specs
GET /v1/google/patents/searchGoogle Patents search results with patent numbers, titles, and inventors
GET /v1/google/patents/detailFull patent record with abstract, claims, citations, and filing timeline
Cookie warmup and browser farm rotation handle all anti-bot challenges automatically. Clean JSON on every request.
When Google shows AI Overview, we capture all text_blocks and reference links — available in ~48% of searches.
Cached results return in under a second. Fresh crawls via cookie warmup in 1-3s, browser fallback in 3-8s.
One API key for Search, Maps, News, Hotels, Trends, Jobs, Shopping, and Patents. Unified billing.
Every Google endpoint costs the same credit amount — simple, predictable, no tier surprises. Configurable per-endpoint by admins. No subscriptions.
Python and Node.js SDKs with typed methods for all endpoints. Or use the REST API directly with any language.
import ScrapeBadger from 'scrapebadger';
const client = new ScrapeBadger({ apiKey: 'sb_live_...' });
// Google Search with AI Overview
const serp = await client.google.search({ q: 'best restaurants NYC' });
console.log(serp.ai_overview?.text_blocks[0]?.snippet);
for (const result of serp.organic_results) {
console.log(`${result.position}. ${result.title}`);
}
// Google Maps reviews
const reviews = await client.google.maps.reviews({
data_id: '0x89c259...',
sort_by: 'newestFirst',
});We use SearchGuard — a combination of cookie warmup sessions and a browser farm for JavaScript-rendered requests. Every request rotates through warmed sessions to avoid detection. You call the API and get clean JSON back every time.
8 products across 19 endpoints: Search (SERP), Maps (places, details, reviews, photos), News (search, topics, trending), Hotels (search, details), Trends (interest over time, by region, related topics, trending), Jobs, Shopping, and Patents.
Yes. When Google shows an AI Overview for a query, we capture all text_blocks and reference links in the response. AI Overview appears in approximately 48% of searches depending on the query type and region.
Sub-second for cached queries. Fresh crawls using cookie warmup sessions return in 1-3 seconds. For JavaScript-heavy pages requiring browser rendering, fallback to the browser farm adds 3-8 seconds. Cache hit rates are typically 40-60% for popular queries.
Flat per-endpoint credit pricing — every Google endpoint costs the same credit amount, kept simple and predictable. Exact per-endpoint cost is visible on each product landing page (fetched live from the pricing API) and configurable by admins. Credits never expire and there are no subscriptions.
Sign up for free and get 1,000 credits to test all endpoints across all 8 Google products.
Get Free Credits