Google Finance API
Get Real-Time Market Data with Google Finance API
To enable this engine, set the
engine=google_finance
parameter.Scraping Google Finance allows users to obtain financial data from a large number of companies in real-time, providing up-to-date information on market trends and performance. This information can be used to make informed investment decisions and improve portfolio management.

We will use the following URL as an example for this request:
https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ
cURL
NodeJS
Python
PHP
Go
Java
.NET
Ruby
curl --request GET --url "https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ"
const http = require("https");
​
const options = {
"method": "GET",
"hostname": "serpapi.webscrapingapi.com",
"port": null,
"path": "/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ",
"headers": {}
};
​
const req = http.request(options, function (res) {
const chunks = [];
​
res.on("data", function (chunk) {
chunks.push(chunk);
});
​
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
​
req.end();
import http.client
​
conn = http.client.HTTPSConnection("serpapi.webscrapingapi.com")
​
conn.request("GET", "/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ")
​
res = conn.getresponse()
data = res.read()
​
print(data.decode("utf-8"))
<?php
​
$curl = curl_init();
​
curl_setopt_array($curl, [
CURLOPT_URL => "https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
​
$response = curl_exec($curl);
$err = curl_error($curl);
​
curl_close($curl);
​
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main
​
import (
"fmt"
"net/http"
"io/ioutil"
)
​
func main() {
​
url := "https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ"
​
req, _ := http.NewRequest("GET", url, nil)
​
res, _ := http.DefaultClient.Do(req)
​
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
​
fmt.Println(res)
fmt.Println(string(body))
​
}
HttpResponse<String> response = Unirest.get("https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ")
var client = new RestClient("https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
require 'uri'
require 'net/http'
require 'openssl'
​
url = URI("https://serpapi.webscrapingapi.com/v1?engine=google_finance&api_key=<YOUR_API_KEY>&q=GOOG:NASDAQ")
​
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
​
request = Net::HTTP::Get.new(url)
​
response = http.request(request)
puts response.read_body
Parameter | Type | Description |
---|---|---|
q
Required | string | The keyword that you are searching for (the query). |
Parameter | Type | Description |
---|---|---|
device | string | The device used for your search. Can be set to desktop , mobile or tablet . |
Parameter | Type | Description |
---|---|---|
hl | string |
"markets": {
"us": [
{
"link": "https://www.google.com/finance/quote/.DJI:INDEXDJX",
"stock": ".DJI:INDEXDJX",
"name": "Dow Jones",
"price": "34,245.93",
"price_movement": {
"percentage": "1.11%",
"value": "376.66",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/.INX:INDEXSP",
"stock": ".INX:INDEXSP",
"name": "S&P 500",
"price": "4,137.29",
"price_movement": {
"percentage": "1.14%",
"value": "46.83",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/.IXIC:INDEXNASDAQ",
"stock": ".IXIC:INDEXNASDAQ",
"name": "Nasdaq",
"price": "11,891.79",
"price_movement": {
"percentage": "1.48%",
"value": "173.67",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/RUT:INDEXRUSSELL",
"stock": "RUT:INDEXRUSSELL",
"name": "Russell",
"price": "1,941.14",
"price_movement": {
"percentage": "1.16%",
"value": "22.33",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/VIX:INDEXCBOE",
"stock": "VIX:INDEXCBOE",
"name": "VIX",
"price": "20.51",
"price_movement": {
"percentage": "0.097%",
"value": "0.020",
"movement": "up"
}
}
],
"europe": [
{
"link": "https://www.google.com/finance/quote/DAX:INDEXDB",
"stock": "DAX:INDEXDB",
"name": "DAX",
"price": "15,438.59",
"price_movement": {
"percentage": "0.27%",
"value": "41.25",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/UKX:INDEXFTSE",
"stock": "UKX:INDEXFTSE",
"name": "FTSE 100",
"price": "7,985.78",
"price_movement": {
"percentage": "0.48%",
"value": "38.18",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/PX1:INDEXEURO",
"stock": "PX1:INDEXEURO",
"name": "CAC 40",
"price": "7,242.27",
"price_movement": {
"percentage": "0.47%",
"value": "33.68",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/INDI:INDEXBME",
"stock": "INDI:INDEXBME",
"name": "IBEX 35",
"price": "9,246.70",
"price_movement": {
"percentage": "0.40%",
"value": "36.40",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/SX5E:INDEXSTOXX",
"stock": "SX5E:INDEXSTOXX",
"name": "STOXX 50",
"price": "4,254.46",
"price_movement": {
"percentage": "0.31%",
"value": "13.10",
"movement": "up"
}
}
],
"asia": [
{
"link": "https://www.google.com/finance/quote/NI225:INDEXNIKKEI",
"stock": "NI225:INDEXNIKKEI",
"name": "Nikkei 225",
"price": "27,602.77",
"price_movement": {
"percentage": "0.64%",
"value": "175.45",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/000001:SHA",
"stock": "000001:SHA",
"name": "SSE",
"price": "3,293.28",
"price_movement": {
"percentage": "0.28%",
"value": "9.12",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/HSI:INDEXHANGSENG",
"stock": "HSI:INDEXHANGSENG",
"name": "HSI",
"price": "21,113.76",
"price_movement": {
"percentage": "0.24%",
"value": "50.66",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/SENSEX:INDEXBOM",
"stock": "SENSEX:INDEXBOM",
"name": "SENSEX",
"price": "61,032.26",
"price_movement": {
"percentage": "0.99%",
"value": "600.42",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/NIFTY_50:INDEXNSE",
"stock": "NIFTY_50:INDEXNSE",
"name": "NIFTY 50",
"price": "17,929.85",
"price_movement": {
"percentage": "0.89%",
"value": "158.95",
"movement": "up"
}
}
],
"currencies": [
{
"link": "https://www.google.com/finance/quote/EUR-USD",
"stock": "EUR-USD",
"name": "EUR / USD",
"price": "1.0757",
"price_movement": {
"percentage": "0.25%",
"value": "0.0027",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/USD-JPY",
"stock": "USD-JPY",
"name": "USD / JPY",
"price": "132.1915",
"price_movement": {
"percentage": "0.11%",
"value": "0.1500",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/GBP-USD",
"stock": "GBP-USD",
"name": "GBP / USD",
"price": "1.2196",
"price_movement": {
"percentage": "0.37%",
"value": "0.0045",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/USD-CAD",
"stock": "USD-CAD",
"name": "USD / CAD",
"price": "1.3337",
"price_movement": {
"percentage": "0.017%",
"value": "0.00023",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/AUD-USD",
"stock": "AUD-USD",
"name": "AUD / USD",
"price": "0.6967",
"price_movement": {
"percentage": "0.012%",
"value": "0.000085",
"movement": "up"
}
}
],
"crypto": [
{
"link": "https://www.google.com/finance/quote/BTC-USD",
"stock": "BTC-USD",
"name": "Bitcoin",
"price": "21,821.10",
"price_movement": {
"percentage": "0.061%",
"value": "13.30",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/ETH-USD",
"stock": "ETH-USD",
"name": "Ethereum",
"price": "1,512.43",
"price_movement": {
"percentage": "0.41%",
"value": "6.14",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/ADA-USD",
"stock": "ADA-USD",
"name": "Cardano",
"price": "0.3613",
"price_movement": {
"percentage": "0.59%",
"value": "0.0021",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/XRP-USD",
"stock": "XRP-USD",
"name": "XRP",
"price": "0.3699",
"price_movement": {
"percentage": "0.23%",
"value": "0.00085",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/DOGE-USD",
"stock": "DOGE-USD",
"name": "Dogecoin",
"price": "0.0817",
"price_movement": {
"percentage": "0.45%",
"value": "0.00037",
"movement": "up"
}
}
],
"futures": [
{
"link": "https://www.google.com/finance/quote/YMW00:CBOT",
"stock": "YMW00:CBOT",
"name": "Dow Futures",
"price": "$34,279.00",
"price_movement": {
"percentage": "0.032%",
"value": "$11.00",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/ESW00:CME_EMINIS",
"stock": "ESW00:CME_EMINIS",
"name": "S&P Futures",
"price": "$4,151.25",
"price_movement": {
"percentage": "0.096%",
"value": "$4.00",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/NQW00:CME_EMINIS",
"stock": "NQW00:CME_EMINIS",
"name": "Nasdaq Futures",
"price": "$12,560.50",
"price_movement": {
"percentage": "0.16%",
"value": "$20.00",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/GCW00:COMEX",
"stock": "GCW00:COMEX",
"name": "Gold",
"price": "$1,871.20",
"price_movement": {
"percentage": "0.41%",
"value": "$7.70",
"movement": "up"
}
},
{
"link": "https://www.google.com/finance/quote/CLW00:NYMEX",
"stock": "CLW00:NYMEX",
"name": "Crude Oil",
"price": "$79.00",
"price_movement": {
"percentage": "1.42%",
"value": "$1.14",
"movement": "up"
}
}
]
},
"key_stats": {
"tags": [
{
"link": "https://www.google.com/finance/markets/most-active",
"name": "Most active",
"description": "One of the most heavily traded stocks during the last trading session"
},
{
"name": "Stock",
"description": "Ownership of a fraction of a corporation and the right to claim a share of the corporation's assets and profits equal to the amount of stock owned"
},
{
"name": "US listed security",
"description": "Listed on NASDAQ"
},
{
"name": "US headquartered",
"description": "Headquartered in Mountain View, California, United States"
}
],
"stats": [
{
"title": "PREVIOUS CLOSE",
"description": "The last closing price",
"value": "$94.86"
},
{
"title": "DAY RANGE",
"description": "The range between the high and low prices over the past day",
"value": "$94.05 - $95.35"
},
{
"title": "YEAR RANGE",
"description": "The range between the high and low prices over the past 52 weeks",
"value": "$83.45 - $144.16"
},
{
"title": "MARKET CAP",
"description": "A valuation method that multiplies the price of a company's stock by the total number of outstanding shares.",
"value": "1.21T USD"
},
{
"title": "AVG VOLUME",
"description": "The average number of shares traded each day over the past 30 days",
"value": "31.78M"
},
{
"title": "P/E RATIO",
"description": "The ratio of current share price to trailing twelve month EPS that signals if the price is high or low compared to other stocks",
"value": "20.84"
},
{
"title": "DIVIDEND YIELD",
"description": "The ratio of annual dividend to current share price that estimates the dividend return of a stock",
"value": "-"
},
{
"title": "PRIMARY EXCHANGE",
"description": "Listed exchange for this security",
"value": "NASDAQ"
},
{
"title": "CDP CLIMATE CHANGE SCORE",
"description": "A score provided by CDP (formerly the Carbon Disclosure Project) that rates a company on its climate transparency and performance",
"value": "A-"
}
],
"about": {
"title": "About",
"description": {
"snippet": "Alphabet Inc. is an American multinational technology conglomerate holding company headquartered in Mountain View, California. It was created through a restructuring of Google on October 2, 2015, and became the parent company of Google and several former Google subsidiaries. Alphabet is the world's third-largest technology company by revenue and one of the world's most valuable companies.\nThe establishment of Alphabet Inc. was prompted by a desire to make the core Google business \"cleaner and more accountable\" while allowing greater autonomy to group companies that operate in businesses other than Internet services. Founders Larry Page and Sergey Brin announced their resignation from their executive posts in December 2019, with the CEO role to be filled by Sundar Pichai, also the CEO of Google. Page and Brin remain employees, board members, and controlling shareholders of Alphabet Inc.",
"link_text": "Wikipedia",
"link": "https://en.wikipedia.org/wiki/Alphabet_Inc."
}
}
},
"summary": {
"title": "Alphabet Inc Class C",
"exchange": "NASDAQ",
"stock": "GOOG",
"price": "$95.00",
"extracted_price": "95",
"extensions": [
"Closed: Feb 14, 5:21:53 AM GMT-5",
"USD",
"NASDAQ",
"Disclaimer"
]
},
"news_results": [
{
"title": "News about Bard, Google",
"items": [
{
"snippet": "Alphabet Chairman John Hennessy explains why Google was hesitant to put out its ChatGPT competitor",
"date": "12 hours ago",
"source": "CNBC",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcReRHXs7rLgYYNx2cE0r7yFXezr5K5MwzBonfo1DQMNZLEL75ZWo8A57K2ihDM",
"link": "https://www.cnbc.com/2023/02/13/alphabet-chairman-john-hennessy-google-bard-hesitation.html"
},
{
"snippet": "Has Google Already Lost The ChatGPT War? (NASDAQ:GOOG)",
"date": "1 day ago",
"source": "Seeking Alpha",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRG32YE-paZ7FZ4V6lM7TzcxYWJjf74TJRSiFSU3NZyPXb3-IjqkHXYH4h2J4U",
"link": "https://seekingalpha.com/article/4577393-has-google-already-lost-the-chatgpt-war"
},
{
"snippet": "Sergey Brin appears to make first request in years for Google code: report",
"date": "2 days ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKa88xWWQWS7WJcZTnIbyOELgwfRboOersqoK5TCra1Fjl5iV1dwwQGGtzTYU",
"link": "https://www.businessinsider.com/google-cofounder-sergey-brin-first-request-in-years-access-code-2023-2"
},
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
},
{
"title": "Q4 earnings report for Alphabet Inc.",
"items": [
{
"snippet": "Alphabet (NASDAQ:GOOGL) sheds 8.1% this week, as yearly returns fall more in line with earnings growth",
"date": "23 hours ago",
"source": "Yahoo Finance",
"link": "https://finance.yahoo.com/news/alphabet-nasdaq-googl-sheds-8-110023793.html"
},
{
"snippet": "1 Thing the Smartest Investors Know About Alphabet",
"date": "3 days ago",
"source": "The Motley Fool",
"link": "https://www.fool.com/investing/2023/02/10/1-thing-smartest-investors-know-about-alphabet/"
},
{
"snippet": "Google Parent Alphabet Posts Drop in Ad Revenue Amid Slowdown",
"date": "1 week ago",
"source": "The Wall Street Journal",
"link": "https://www.wsj.com/articles/alphabet-google-googl-q4-earnings-report-2022-11675306621"
},
{
"snippet": "Amazon stock hit hardest after tech earnings bonanza, despite misses by Apple and Alphabet",
"date": "1 week ago",
"source": "CNBC",
"link": "https://www.cnbc.com/2023/02/03/amazon-stock-hit-hardest-after-tech-earnings-bonanza.html"
},
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
},
{
"title": "Yahoo Finance",
"items": [
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
},
{
"title": "Business Today",
"items": [
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
},
{
"title": "The Motley Fool",
"items": [
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
},
{
"title": "Business Insider",
"items": [
{
"date": "19 hours ago",
"source": "Yahoo Finance",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXc0DYK26O04h6swfBRLu-AYyOvaCTSLh5lLP-4xxhu3idFlzm7AvkOQOa4Bs",
"link": "https://finance.yahoo.com/news/amazon-alphabet-antitrust-push-seen-113702724.html"
},
{
"date": "2 days ago",
"source": "Business Today",
"thumbnail": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSH9AQAXK1xbX7l9GXicweRg9xDYQJVzCFo3lr1JsbXuwZuAJfV4QxJbCL_B8o",
"link": "https://www.businesstoday.in/technology/news/story/satya-nadella-says-lots-of-respect-for-sundar-pichai-microsoft-made-google-dance-with-ai-integration-369891-2023-02-11"
},
{
"date": "2 days ago",
"source": "The Motley Fool",
"thumbnail": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBUqMv3IoZVliHOSUkAR0HkDHl_xTRfZgU8gS47BLvkFMDMRzdn1sT51Ppxe4",
"link": "https://www.fool.com/investing/2023/02/11/opinion-these-will-be-the-3-largest-stocks-by-2030/"
},
{
"date": "19 hours ago",
"source": "Business Insider",
"thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0muIeiPbgsJAMrpDY6ACOO-3d7IjrSRYm-znJhG295BANz9b8p7nkq46axpY",
"link": "https://www.businessinsider.com/google-sundar-pichai-time-to-step-down-says-om-malik-2023-2"
}
]
}
],
"discover_more": [
{
"title": "You may be interested in",
"items": [
{
"stock": ".DJI:INDEXDJX",
"link": "https://www.google.com/finance/quote/.DJI:INDEXDJX",
"name": "Dow Jones Industrial Average",
"price": "34,245.93",
"extracted_price": 34245.93,
"price_movement": {
"movement": "up",
"percentage": 1.11
}
},
{
"stock": ".INX:INDEXSP",
"link": "https://www.google.com/finance/quote/.INX:INDEXSP",
"name": "S&P 500",
"price": "4,137.29",
"extracted_price": 4137.29,
"price_movement": {
"movement": "up",
"percentage": 1.14
}
},
{
"stock": "TSLA:NASDAQ",
"link": "https://www.google.com/finance/quote/TSLA:NASDAQ",
"name": "Tesla Inc",
"price": "$194.64",
"extracted_price": 194.64,
"price_movement": {
"movement": "down",
"percentage": 1.14
}
},