# Structured Google search results without HTML parsing
> Source: https://scrape.do/documentation/changelog/2026-02-25-google-serp-api/
2026-02-25 · feature
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_id`s 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=desktop
```
See the [SERP API documentation](/documentation/google-scraper-api/search) for the full parameter list and response schema.