Get exactly what users see in Google Gemini — including sources, citations, and structured output — returned as clean JSON through a single API call.
curl "https://api.scrapellm.com/scrapers/gemini" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US" // Response { "scraper": "gemini", "status": "done", "result": "Marketers commonly recommend...", "links": [ { "url": "...", "text": "..." } ], "credits_used": 3 }
Built for developers and data teams who need reliable, structured output at any volume.
Captures the full response users see in Gemini, not the limited Gemini API output.
All referenced web sources with URLs and anchor text.
Response in both markdown and plain text formats.
Route requests through any country for region-specific results.
Submit async, receive results via polling or webhook.
Same JSON structure across all ScrapeLLM providers.
One GET request. Structured JSON back. Works in any language.
import requests response = requests.get( "https://api.scrapellm.com/scrapers/gemini", 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/gemini?${params}`, { headers: { 'X-API-Key': 'your_api_key' } } ); const data = await response.json(); console.log(data);
curl "https://api.scrapellm.com/scrapers/gemini" \ -H "X-API-Key: your_api_key" \ -G \ --data-urlencode "prompt=What brands do marketers recommend?" \ --data-urlencode "country=US"
| Field | Type | Description |
|---|---|---|
| result | string | Plain text response from Gemini |
| result_markdown | string | Markdown-formatted response |
| links | array | Cited sources with URL and title |
| 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 Gemini 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.