Get organic results, featured snippets, People Also Ask, shopping cards, and more from Google Search — all parsed into clean, structured JSON.
curl "https://api.scrapellm.com/scrapers/google_search" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US" // Response { "scraper": "google_search", "status": "done", "result": "Marketers commonly recommend...", "links": [ { "url": "...", "text": "..." } ], "credits_used": 1 }
Built for developers and data teams who need reliable, structured output at any volume.
Full organic SERP with titles, URLs, and snippets.
Extracts featured snippets and answer boxes when present.
Captures PAA questions and their expanded answers.
Structured product listings from Google Shopping.
Request results from any country code for localised SERPs.
Async with polling or webhooks for bulk SERP jobs.
One GET request. Structured JSON back. Works in any language.
import requests response = requests.get( "https://api.scrapellm.com/scrapers/google_search", headers={"X-API-Key": "your_api_key"}, params={ "prompt": "What brands do marketers recommend?", "country": "US", } ) print(response.json())
const params = new URLSearchParams({ prompt: 'What brands do marketers recommend?', country: 'US', }); const response = await fetch( `https://api.scrapellm.com/scrapers/google_search?${params}`, { headers: { 'X-API-Key': 'your_api_key' } } ); const data = await response.json(); console.log(data);
curl "https://api.scrapellm.com/scrapers/google_search" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US"
| Field | Type | Description |
|---|---|---|
| organic_results | array | List of organic results with title, URL, snippet |
| featured_snippet | object | Featured snippet if present |
| people_also_ask | array | PAA questions and answers |
| shopping_results | array | Google Shopping product cards |
| credits_used | integer | Credits consumed by this request |
| elapsed_ms | float | Request duration in milliseconds |
Teams across marketing, SEO, research, and product use ScrapeLLM to get structured Google Search data at the scale that matters.
Access all major AI and search providers through a single, consistent API.
500 free credits. No credit card. Structured JSON in minutes.