featuregoogle-apiplugins
Structured Google search results without HTML parsing
A dedicated Google SERP endpoint returns organic results, ads, knowledge panels, and related searches as JSON.
The Google Search API is generally available. Send a query, get back fully parsed JSON — no HTML scraping, no SERP layout changes to chase.
What's in the response
- Organic results — title, URL, displayed link, snippet, position, sitelinks
- Ads — sponsored result blocks separated cleanly from organic
- Knowledge graph — when Google attaches one to the query
- Local pack — map results with
place_ids you can chain into the Maps API - Related questions ("People also ask")
- Related searches
Localization
The API uses the shared Google vocabulary: hl for language (150+), gl for country (240+), google_domain (84 domains). Pagination via start (0 = first page, 10 = second, …). Device emulation via device=desktop|mobile.
Example
GET https://api.scrape.do/plugin/google/search
?token=YOUR_TOKEN
&q=pizza+new+york
&gl=us
&hl=en
&device=desktopSee the SERP API documentation for the full parameter list and response schema.

