Google AI Overview API
This API is used only when Google requires a separate request to fetch AI Overview results. Pass the url field returned by the Google Search API response. The URL expires after 2 minutes. Each successful request costs 5 API credits.
Endpoint:
https://api.scrapingdog.com/google/ai_overviewAPI Parameters
🔑
Authentication
api_keyRequiredYour personal API key. Available on your dashboard
Type: String
🔗
Request Parameters
urlRequiredThis URL is used to fetch the AI Overview Results. You will get this from the Google Search API response. Note: expires after 2 minutes
Type: String
API Examples
Code to Integrate
curl "https://api.scrapingdog.com/google/ai_overview?api_key=APIKEY&url=AI_OVERVIEW_URL"
import requests params = { "api_key": "APIKEY", "url": "AI_OVERVIEW_URL", } response = requests.get("https://api.scrapingdog.com/google/ai_overview", params=params) print(response.json())
const axios = require("axios"); const params = { api_key: "APIKEY", url: "AI_OVERVIEW_URL", }; axios.get("https://api.scrapingdog.com/google/ai_overview", { params }) .then(res => console.log(res.data)) .catch(err => console.error(err));
<?php $params = http_build_query([ "api_key" => "APIKEY", "url" => "AI_OVERVIEW_URL", ]); $response = file_get_contents("https://api.scrapingdog.com/google/ai_overview?" . $params); print_r(json_decode($response, true));
require "net/http" require "json" uri = URI("https://api.scrapingdog.com/google/ai_overview") uri.query = URI.encode_www_form(api_key: "APIKEY", url: "AI_OVERVIEW_URL") res = Net::HTTP.get_response(uri) puts JSON.parse(res.body)
import java.net.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { String url = "https://api.scrapingdog.com/google/ai_overview?api_key=APIKEY&url=AI_OVERVIEW_URL"; HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection(); con.setRequestMethod("GET"); BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())); String line; StringBuilder content = new StringBuilder(); while ((line = in.readLine()) != null) content.append(line); in.close(); System.out.println(content.toString()); } }
API Response
{
"ai_overview": {
"text_blocks": [
{
"type": "paragraph",
"snippet": "Several companies offer high-quality solar panels in Gujarat. Some of the best include JJ PV Solar, Waaree Energies, Tata Power Solar, Adani Solar, RenewSys, Goldi Solar, Loom Solar, Vikram Solar, EMMVEE Solar, Havells Solar, Rayzon Solar and Sunora Solar.",
"snippet_highlighted_words": ""
},
{
"type": "list",
"list": [
{ "snippet": "JJ PV Solar: A large manufacturer with a strong presence in Gujarat, offering a range of solar panels and systems." },
{ "snippet": "Waaree Energies: A prominent Indian manufacturer with a large cell manufacturing plant and module capacity." },
{ "snippet": "Tata Power Solar: A reputable brand with a history in the solar industry, offering a wide range of solar solutions." },
{ "snippet": "Adani Solar: A major player in the renewable energy sector with a state-of-the-art manufacturing facility." },
{ "snippet": "RenewSys: Specializes in PV modules and solar components, ensuring high performance and durability." },
{ "snippet": "Goldi Solar: A fast-growing company with a focus on sustainable energy solutions, including HJT and TOPCon technologies." }
]
},
{
"type": "paragraph",
"snippet": "When choosing a solar panel, consider factors such as efficiency, power output, durability, warranty, and the manufacturer's reputation."
}
],
"references": [
{
"title": "Sunora Solar | Solar Panel Manufacturer Based in Gujarat | India",
"link": "https://sunorasolar.com/",
"snippet": "In discussing the Efficient Solar Panels in Gujarat, a few names stand out because of their quality performance and market presence.",
"source": "Sunora Solar",
"index": 0
},
{
"title": "Top 10 Solar Panel Manufacturers in Gujarat: Leading...",
"link": "https://www.jjpvsolar.com/top-10-solar-panel-manufacturers-in-gujarat-leading-the-renewable-energy-revolution",
"snippet": "Here are the best solar panel companies in Gujarat that are leading the renewable energy revolution: JJ PV Solar – One of the largest...",
"source": "jj pv solar",
"index": 1
},
{
"title": "Top 10 Best Solar Manufacturers in Gujarat 2025 - Onix Renewable",
"link": "https://onixrenewable.com/blog/Top-10-Best-Solar-Manufacturers-in-Gujarat-2025.php",
"snippet": "1. Onix Renewable. A fast-scaling clean tech leader, Onix Renewable is transforming solar panel manufacturing.",
"source": "Onix Renewable",
"index": 2
},
{
"title": "Rayzon Solar | Best Solar Panel Manufacture",
"link": "https://rayzonsolar.com/",
"snippet": "Rayzon Solar, India's top solar panel manufacturing company, has emerged as a leader in the industry.",
"source": "Rayzon Solar",
"index": 3
}
]
}
}