NAVNavbar
cURL php NodeJS Python cSharp

Get Google Finance Explore Advanced Results by id


Live Google Finance Explore provides real-time data from the ‘Explore’ tab of Google Finance. These results are specific to the parameters you specify in the request: ticker in the keyword field, location and language.

Instead of ‘login’ and ‘password’ use your credentials from https://app.dataforseo.com/api-access

<?php
// You can download this file from here https://cdn.dataforseo.com/v3/examples/php/php_RestClient.zip
require('RestClient.php');
$api_url = 'https://api.dataforseo.com/';
try {
	// Instead of 'login' and 'password' use your credentials from https://app.dataforseo.com/api-access
	$client = new RestClient($api_url, null, 'login', 'password');
} catch (RestClientException $e) {
	echo "n";
	print "HTTP code: {$e->getHttpCode()}n";
	print "Error code: {$e->getCode()}n";
	print "Message: {$e->getMessage()}n";
	print  $e->getTraceAsString();
	echo "n";
	exit();
}
try {
	$result = array();
	// #1 - using this method you can get a list of completed tasks
	// GET /v3/serp/google/finance_explore/tasks_ready
	// in addition to 'google' and 'finance_explore' you can also set other search engine and type parameters
	// the full list of possible parameters is available in documentation
	$tasks_ready = $client->get('/v3/serp/google/finance_explore/tasks_ready');
	// you can find the full list of the response codes here https://docs.dataforseo.com/v3/appendix/errors
	if (isset($tasks_ready['status_code']) AND $tasks_ready['status_code'] === 20000) {
		foreach ($tasks_ready['tasks'] as $task) {
			if (isset($task['result'])) {
				foreach ($task['result'] as $task_ready) {
					// #2 - using this method you can get results of each completed task
					// GET /v3/serp/google/finance_explore/task_get/advanced/$id
					if (isset($task_ready['endpoint_advanced'])) {
						$result[] = $client->get($task_ready['endpoint_advanced']);
					}
					// #3 - another way to get the task results by id
					// GET /v3/serp/google/finance_explore/task_get/advanced/$id
					/*
					if (isset($task_ready['id'])) {
						$result[] = $client->get('/v3/serp/google/finance_explore/task_get/advanced/' . $task_ready['id']);
					}
					*/
				}
			}
		}
	}
	print_r($result);
	// do something with result
} catch (RestClientException $e) {
	echo "n";
	print "HTTP code: {$e->getHttpCode()}n";
	print "Error code: {$e->getCode()}n";
	print "Message: {$e->getMessage()}n";
	print  $e->getTraceAsString();
	echo "n";
}
$client = null;
?>

The above command returns JSON structured like this:

{
  "version": "0.1.20241227",
  "status_code": 20000,
  "status_message": "Ok.",
  "time": "0.0663 sec.",
  "cost": 0,
  "tasks_count": 1,
  "tasks_error": 0,
  "tasks": [
    {
      "id": "02171329-1535-0066-0000-d60d02ddfc47",
      "status_code": 20000,
      "status_message": "Ok.",
      "time": "0.0295 sec.",
      "cost": 0,
      "result_count": 1,
      "path": [
        "v3",
        "serp",
        "google",
        "finance_explore",
        "task_get",
        "advanced",
        "02171329-1535-0066-0000-d60d02ddfc47"
      ],
      "data": {
        "api": "serp",
        "function": "task_get",
        "se": "google",
        "se_type": "finance_explore",
        "language_name": "English",
        "location_code": 2840,
        "keyword": "NASDAQ-100",
        "news_type": "local_market",
        "priority": 2,
        "device": "desktop",
        "os": "windows"
      },
      "result": [
        {
          "keyword": "NASDAQ-100",
          "type": "home_page",
          "se_domain": "google.com",
          "location_code": 2840,
          "language_code": "en",
          "check_url": "https://www.google.com/finance?hl=en&gl=us",
          "datetime": "2025-02-17 11:29:45 +00:00",
          "spell": null,
          "refinement_chips": null,
          "item_types": [
            "google_finance_hero_groups",
            "google_finance_interested",
            "google_finance_news",
            "google_finance_earnings_calendar",
            "google_finance_most_followed",
            "google_finance_market_trends"
          ],
          "se_results_count": 0,
          "items_count": 7,
          "items": [
            {
              "type": "google_finance_hero_groups",
              "rank_group": 1,
              "rank_absolute": 1,
              "markets": [
                {
                  "market": "Futures",
                  "items": [
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "YMW00",
                      "price": 44695,
                      "price_delta": 60,
                      "price_currency": "USD",
                      "identifier": "YMW00:CBOT",
                      "displayed_name": "E-mini Dow ($5)",
                      "url": "https://google.com/finance/quote/YMW00:CBOT?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:19:23 +00:00",
                      "percentage_delta": 0.13442366
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "ESW00",
                      "price": 6145.5,
                      "price_delta": 13.5,
                      "price_currency": "USD",
                      "identifier": "ESW00:CME_EMINIS",
                      "displayed_name": "E-mini S&P 500",
                      "url": "https://google.com/finance/quote/ESW00:CME_EMINIS?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:19:31 +00:00",
                      "percentage_delta": 0.22015655
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "NQW00",
                      "price": 22269,
                      "price_delta": 72.75,
                      "price_currency": "USD",
                      "identifier": "NQW00:CME_EMINIS",
                      "displayed_name": "E-mini NASDAQ 100",
                      "url": "https://google.com/finance/quote/NQW00:CME_EMINIS?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:19:31 +00:00",
                      "percentage_delta": 0.32775807
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "GCW00",
                      "price": 2911.300048828125,
                      "price_delta": 10.600098,
                      "price_currency": "USD",
                      "identifier": "GCW00:COMEX",
                      "displayed_name": "Gold",
                      "url": "https://google.com/finance/quote/GCW00:COMEX?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:19:28 +00:00",
                      "percentage_delta": 0.3654324
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "CLW00",
                      "price": 70.75,
                      "price_delta": 0.040000916,
                      "price_currency": "USD",
                      "identifier": "CLW00:NYMEX",
                      "displayed_name": "Crude Oil",
                      "url": "https://google.com/finance/quote/CLW00:NYMEX?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:19:27 +00:00",
                      "percentage_delta": 0.05657038
                    }
                  ]
                },
                {
                  "market": "US",
                  "items": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".DJI",
                      "market_identifier": "INDEXDJX",
                      "index_value": 44546.08,
                      "index_value_delta": -165.35156,
                      "identifier": ".DJI:INDEXDJX",
                      "displayed_name": "Dow Jones Industrial Average",
                      "url": "https://google.com/finance/quote/.DJI:INDEXDJX?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:44:00 +00:00",
                      "percentage_delta": -0.36981946
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".IXIC",
                      "market_identifier": "INDEXNASDAQ",
                      "index_value": 20026.773,
                      "index_value_delta": 81.12891,
                      "identifier": ".IXIC:INDEXNASDAQ",
                      "displayed_name": "Nasdaq Composite",
                      "url": "https://google.com/finance/quote/.IXIC:INDEXNASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-14 22:15:59 +00:00",
                      "percentage_delta": 0.40675
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "RUT",
                      "market_identifier": "INDEXRUSSELL",
                      "index_value": 2279.9807,
                      "index_value_delta": -2.2038574,
                      "identifier": "RUT:INDEXRUSSELL",
                      "displayed_name": "Russell 2000 Index",
                      "url": "https://google.com/finance/quote/RUT:INDEXRUSSELL?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:30:09 +00:00",
                      "percentage_delta": -0.096567884
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "VIX",
                      "market_identifier": "INDEXCBOE",
                      "index_value": 15.39,
                      "index_value_delta": 0.28999996,
                      "identifier": "VIX:INDEXCBOE",
                      "displayed_name": "VIX",
                      "url": "https://google.com/finance/quote/VIX:INDEXCBOE?hl=en&gl=us",
                      "location": "America/Chicago",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:14:01 +00:00",
                      "percentage_delta": 1.9205295
                    }
                  ]
                },
                {
                  "market": "Europe",
                  "items": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "DAX",
                      "market_identifier": "INDEXDB",
                      "index_value": 22695.29,
                      "index_value_delta": 181.86914,
                      "identifier": "DAX:INDEXDB",
                      "displayed_name": "DAX PERFORMANCE-INDEX",
                      "url": "https://google.com/finance/quote/DAX:INDEXDB?hl=en&gl=us",
                      "location": "Europe/Berlin",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:14:11 +00:00",
                      "percentage_delta": 0.80782545
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "UKX",
                      "market_identifier": "INDEXFTSE",
                      "index_value": 8744.93,
                      "index_value_delta": 12.469727,
                      "identifier": "UKX:INDEXFTSE",
                      "displayed_name": "FTSE 100 Index",
                      "url": "https://google.com/finance/quote/UKX:INDEXFTSE?hl=en&gl=us",
                      "location": "Europe/London",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:29:07 +00:00",
                      "percentage_delta": 0.14279741
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "PX1",
                      "market_identifier": "INDEXEURO",
                      "index_value": 8186.33,
                      "index_value_delta": 7.790039,
                      "identifier": "PX1:INDEXEURO",
                      "displayed_name": "CAC 40",
                      "url": "https://google.com/finance/quote/PX1:INDEXEURO?hl=en&gl=us",
                      "location": "Europe/Paris",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:13:45 +00:00",
                      "percentage_delta": 0.09524975
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "INDI",
                      "market_identifier": "INDEXBME",
                      "index_value": 12996,
                      "index_value_delta": 40,
                      "identifier": "INDI:INDEXBME",
                      "displayed_name": "IBEX 35",
                      "url": "https://google.com/finance/quote/INDI:INDEXBME?hl=en&gl=us",
                      "location": "Europe/Madrid",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:13:55 +00:00",
                      "percentage_delta": 0.30873728
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "SX5E",
                      "market_identifier": "INDEXSTOXX",
                      "index_value": 5508.41,
                      "index_value_delta": 15.010254,
                      "identifier": "SX5E:INDEXSTOXX",
                      "displayed_name": "EURO STOXX 50",
                      "url": "https://google.com/finance/quote/SX5E:INDEXSTOXX?hl=en&gl=us",
                      "location": "Europe/Berlin",
                      "trend": "up",
                      "timestamp": "2025-02-17 11:14:00 +00:00",
                      "percentage_delta": 0.2732416
                    }
                  ]
                },
                {
                  "market": "Asia",
                  "items": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "NI225",
                      "market_identifier": "INDEXNIKKEI",
                      "index_value": 39174.25,
                      "index_value_delta": 24.820313,
                      "identifier": "NI225:INDEXNIKKEI",
                      "displayed_name": "Nikkei 225",
                      "url": "https://google.com/finance/quote/NI225:INDEXNIKKEI?hl=en&gl=us",
                      "location": "Asia/Tokyo",
                      "trend": "up",
                      "timestamp": "2025-02-17 10:00:00 +00:00",
                      "percentage_delta": 0.06339891
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "000001",
                      "market_identifier": "SHA",
                      "index_value": 3355.8296,
                      "index_value_delta": 9.105469,
                      "identifier": "000001:SHA",
                      "displayed_name": "SSE Composite Index",
                      "url": "https://google.com/finance/quote/000001:SHA?hl=en&gl=us",
                      "location": "Asia/Shanghai",
                      "trend": "up",
                      "timestamp": "2025-02-17 08:15:00 +00:00",
                      "percentage_delta": 0.2720711
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "HSI",
                      "market_identifier": "INDEXHANGSENG",
                      "index_value": 22616.23,
                      "index_value_delta": -4.0996094,
                      "identifier": "HSI:INDEXHANGSENG",
                      "displayed_name": "Hang Seng Index",
                      "url": "https://google.com/finance/quote/HSI:INDEXHANGSENG?hl=en&gl=us",
                      "location": "Asia/Hong_Kong",
                      "trend": "down",
                      "timestamp": "2025-02-17 08:09:06 +00:00",
                      "percentage_delta": -0.018123562
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "SENSEX",
                      "market_identifier": "INDEXBOM",
                      "index_value": 75996.86,
                      "index_value_delta": 57.648438,
                      "identifier": "SENSEX:INDEXBOM",
                      "displayed_name": "BSE SENSEX",
                      "url": "https://google.com/finance/quote/SENSEX:INDEXBOM?hl=en&gl=us",
                      "location": "Asia/Calcutta",
                      "trend": "up",
                      "timestamp": "2025-02-17 10:00:49 +00:00",
                      "percentage_delta": 0.07591393
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": "NIFTY_50",
                      "market_identifier": "INDEXNSE",
                      "index_value": 22959.5,
                      "index_value_delta": 30.25,
                      "identifier": "NIFTY_50:INDEXNSE",
                      "displayed_name": "NIFTY 50",
                      "url": "https://google.com/finance/quote/NIFTY_50:INDEXNSE?hl=en&gl=us",
                      "location": "Asia/Calcutta",
                      "trend": "up",
                      "timestamp": "2025-02-17 10:01:04 +00:00",
                      "percentage_delta": 0.13192756
                    }
                  ]
                },
                {
                  "market": "Currencies",
                  "items": [
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "EUR",
                      "quote_symbol": "USD",
                      "base_display_name": "Euro",
                      "quote_display_name": "United States Dollar",
                      "price": 1.048285,
                      "price_delta": -0.0007149999999999999,
                      "identifier": "EUR-USD",
                      "displayed_name": "EUR / USD",
                      "url": "https://google.com/finance/quote/EUR-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "down",
                      "timestamp": "2025-02-17 11:29:05 +00:00",
                      "percentage_delta": -0.06816015
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "USD",
                      "quote_symbol": "JPY",
                      "base_display_name": "United States Dollar",
                      "quote_display_name": "Japanese Yen",
                      "price": 151.6785,
                      "price_delta": -0.6515000000000001,
                      "identifier": "USD-JPY",
                      "displayed_name": "USD / JPY",
                      "url": "https://google.com/finance/quote/USD-JPY?hl=en&gl=us",
                      "location": null,
                      "trend": "down",
                      "timestamp": "2025-02-17 11:29:05 +00:00",
                      "percentage_delta": -0.42768979999999995
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "GBP",
                      "quote_symbol": "USD",
                      "base_display_name": "Pound sterling",
                      "quote_display_name": "United States Dollar",
                      "price": 1.2598,
                      "price_delta": 0.0013843500000000001,
                      "identifier": "GBP-USD",
                      "displayed_name": "GBP / USD",
                      "url": "https://google.com/finance/quote/GBP-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:29:05 +00:00",
                      "percentage_delta": 0.11000729999999999
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "USD",
                      "quote_symbol": "CAD",
                      "base_display_name": "United States Dollar",
                      "quote_display_name": "Canadian Dollar",
                      "price": 1.41924496,
                      "price_delta": 0.00070464,
                      "identifier": "USD-CAD",
                      "displayed_name": "USD / CAD",
                      "url": "https://google.com/finance/quote/USD-CAD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:28:05 +00:00",
                      "percentage_delta": 0.049673590000000004
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "AUD",
                      "quote_symbol": "USD",
                      "base_display_name": "Australian Dollar",
                      "quote_display_name": "United States Dollar",
                      "price": 0.6361749999999999,
                      "price_delta": 0.000625,
                      "identifier": "AUD-USD",
                      "displayed_name": "AUD / USD",
                      "url": "https://google.com/finance/quote/AUD-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:29:05 +00:00",
                      "percentage_delta": 0.09834002
                    }
                  ]
                },
                {
                  "market": "Crypto",
                  "items": [
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "BTC",
                      "quote_symbol": "USD",
                      "base_display_name": "Bitcoin",
                      "quote_display_name": "United States Dollar",
                      "price": 96314.2,
                      "price_delta": 71.47,
                      "identifier": "BTC-USD",
                      "displayed_name": "Bitcoin (BTC / USD)",
                      "url": "https://google.com/finance/quote/BTC-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:28:59 +00:00",
                      "percentage_delta": 0.07426015
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "ETH",
                      "quote_symbol": "USD",
                      "base_display_name": "Ether",
                      "quote_display_name": "United States Dollar",
                      "price": 2749.377622118,
                      "price_delta": 84.6579976703,
                      "identifier": "ETH-USD",
                      "displayed_name": "Ether (ETH / USD)",
                      "url": "https://google.com/finance/quote/ETH-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:27:59 +00:00",
                      "percentage_delta": 3.1769939999999997
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "ADA",
                      "quote_symbol": "USD",
                      "base_display_name": "Cardano",
                      "quote_display_name": "United States Dollar",
                      "price": 0.80479547972,
                      "price_delta": 0.03264005693,
                      "identifier": "ADA-USD",
                      "displayed_name": "Cardano (ADA / USD)",
                      "url": "https://google.com/finance/quote/ADA-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "up",
                      "timestamp": "2025-02-17 11:27:59 +00:00",
                      "percentage_delta": 4.227135
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "XRP",
                      "quote_symbol": "USD",
                      "base_display_name": "XRP",
                      "quote_display_name": "United States Dollar",
                      "price": 2.6762314684,
                      "price_delta": -0.05494472354,
                      "identifier": "XRP-USD",
                      "displayed_name": "XRP (XRP / USD)",
                      "url": "https://google.com/finance/quote/XRP-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "down",
                      "timestamp": "2025-02-17 11:27:59 +00:00",
                      "percentage_delta": -2.01176
                    },
                    {
                      "type": "google_finance_asset_pair_element",
                      "base_symbol": "DOGE",
                      "quote_symbol": "USD",
                      "base_display_name": "Dogecoin",
                      "quote_display_name": "United States Dollar",
                      "price": 0.2633858606,
                      "price_delta": -0.00272528785,
                      "identifier": "DOGE-USD",
                      "displayed_name": "Dogecoin (DOGE / USD)",
                      "url": "https://google.com/finance/quote/DOGE-USD?hl=en&gl=us",
                      "location": null,
                      "trend": "down",
                      "timestamp": "2025-02-17 11:27:59 +00:00",
                      "percentage_delta": -1.024116
                    }
                  ]
                }
              ]
            },
            {
              "type": "google_finance_interested",
              "rank_group": 1,
              "rank_absolute": 2,
              "items": [
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "QTCOM",
                  "price": 90.15,
                  "price_delta": 1.5,
                  "price_currency": "EUR",
                  "identifier": "QTCOM:HEL",
                  "displayed_name": "Qt Group Oyj",
                  "url": "https://google.com/finance/quote/QTCOM:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:13 +00:00",
                  "percentage_delta": 1.6920474
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": "OMXH25",
                  "market_identifier": "INDEXNASDAQ",
                  "index_value": 4742.749,
                  "index_value_delta": 39.867188,
                  "identifier": "OMXH25:INDEXNASDAQ",
                  "displayed_name": "OMX Helsinki 25",
                  "url": "https://google.com/finance/quote/OMXH25:INDEXNASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:28 +00:00",
                  "percentage_delta": 0.84771824
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "WRT1V",
                  "price": 18.47,
                  "price_delta": -0.1400013,
                  "price_currency": "EUR",
                  "identifier": "WRT1V:HEL",
                  "displayed_name": "Wartsila Oyj Abp",
                  "url": "https://google.com/finance/quote/WRT1V:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "down",
                  "timestamp": "2025-02-17 11:29:19 +00:00",
                  "percentage_delta": -0.75229067
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TYRES",
                  "price": 6.414,
                  "price_delta": 0.026000023,
                  "price_currency": "EUR",
                  "identifier": "TYRES:HEL",
                  "displayed_name": "Nokian Tyres plc",
                  "url": "https://google.com/finance/quote/TYRES:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:26 +00:00",
                  "percentage_delta": 0.4070135
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": ".DJI",
                  "market_identifier": "INDEXDJX",
                  "index_value": 44546.08,
                  "index_value_delta": -165.35156,
                  "identifier": ".DJI:INDEXDJX",
                  "displayed_name": "Dow Jones Industrial Average",
                  "url": "https://google.com/finance/quote/.DJI:INDEXDJX?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-14 21:44:00 +00:00",
                  "percentage_delta": -0.36981946
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "OUT1V",
                  "price": 3.54,
                  "price_delta": 0.013000011,
                  "price_currency": "EUR",
                  "identifier": "OUT1V:HEL",
                  "displayed_name": "Outokumpu Oyj",
                  "url": "https://google.com/finance/quote/OUT1V:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:28:47 +00:00",
                  "percentage_delta": 0.36858553
                }
              ]
            },
            {
              "type": "google_finance_news",
              "rank_group": 1,
              "rank_absolute": 3,
              "title": "Today's financial news",
              "sub_title": null,
              "items": [
                {
                  "type": "google_finance_news_element",
                  "title": "The S&P 500’s race to a new record may tip it into a bigger pullback. \nHere’s why.",
                  "url": "https://www.marketwatch.com/story/the-s-p-500s-race-to-a-new-record-may-tip-it-into-a-bigger-pullback-heres-why-c81dd478",
                  "source": "MarketWatch",
                  "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0FOneYa--wuwVYczBD2xqBn13wsf8MBzj_Yi_m1deLxPD9P6jg1HooQSNaAA",
                  "timestamp": "2025-02-17 11:01:00 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "1 Index Fund to Buy That Could Produce Total Returns 5 Times Better Than \nthe S&P 500, According to Certain Wall Street Analysts",
                  "url": "https://www.fool.com/investing/2025/02/17/1-index-fund-to-buy-that-could-produce-returns-5-t/",
                  "source": "The Motley Fool",
                  "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTrO_sLuW3WLJutRxaydcoWlKpPt10x_ulUWUEqVe8prLZC_aIxvTdh_vIXIO0",
                  "timestamp": "2025-02-17 10:19:00 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "S&P 500 reaches record high, Fed rate cuts anticipated",
                  "url": "https://dataconomy.com/2025/02/17/sp-500-reaches-record-high-fed-rate-cuts-anticipated/",
                  "source": "Dataconomy",
                  "image_url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS0HfFkIps5u1uzqR-NOQlFplnOw6z7s3C-vqQolIFoAGZKnNirZsoqjrYoFmo",
                  "timestamp": "2025-02-17 08:35:38 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "NDAQ",
                      "price": 80.91,
                      "price_delta": -0.7799988,
                      "price_currency": "USD",
                      "identifier": "NDAQ:NASDAQ",
                      "displayed_name": "Nasdaq Inc",
                      "url": "https://google.com/finance/quote/NDAQ:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -0.9548277
                    },
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "Futures Rise On Holiday Weekend; 3 Stocks Near Buy Points",
                  "url": "https://www.investors.com/market-trend/stock-market-today/dow-jones-futures-ai-stocks-amazon-broadcom-buy-points/",
                  "source": "Investor's Business Daily",
                  "image_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRTsJmCVbTfUocPoBK0vg8n_W66JgmYwoYm7W5Y4592Ag67RyqI6bfBNw8TjQM",
                  "timestamp": "2025-02-17 03:53:00 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".DJI",
                      "market_identifier": "INDEXDJX",
                      "index_value": 44546.08,
                      "index_value_delta": -165.35156,
                      "identifier": ".DJI:INDEXDJX",
                      "displayed_name": "Dow Jones Industrial Average",
                      "url": "https://google.com/finance/quote/.DJI:INDEXDJX?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:44:00 +00:00",
                      "percentage_delta": -0.36981946
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "AVGO",
                      "price": 233.04,
                      "price_delta": -2.7600098,
                      "price_currency": "USD",
                      "identifier": "AVGO:NASDAQ",
                      "displayed_name": "Broadcom Inc",
                      "url": "https://google.com/finance/quote/AVGO:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -1.1704876
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "AMZN",
                      "price": 228.68,
                      "price_delta": -1.6900024,
                      "price_currency": "USD",
                      "identifier": "AMZN:NASDAQ",
                      "displayed_name": "Amazon.com Inc",
                      "url": "https://google.com/finance/quote/AMZN:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -0.73360354
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "Huge Growth-Stock Bubble Could Sink S&P 500 by 40%: Bank of America",
                  "url": "https://www.businessinsider.com/stock-market-crash-growth-bubble-ai-dotcom-nifty-fifty-sp500-2025-2",
                  "source": "Business Insider",
                  "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTPnTFE-TXYcHxQgL2DIpAdHrb0NoXUJ22aNaUKxgGB2FzBUDJRBMEiyL75rw0",
                  "timestamp": "2025-02-15 10:00:00 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    },
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "BAC",
                      "price": 46.96,
                      "price_delta": 0.62999725,
                      "price_currency": "USD",
                      "identifier": "BAC:NYSE",
                      "displayed_name": "Bank of America Corp",
                      "url": "https://google.com/finance/quote/BAC:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": 1.359804
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "The Bubble Indicator: Is the Stock Market Overheating?",
                  "url": "https://www.visualcapitalist.com/sp/the-bubble-indicator-is-the-stock-market-overheating/",
                  "source": "Visual Capitalist",
                  "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR15G2qBpG_BFxur_cZXVibDLEirs3aTEdnQM92VHJdgoiDyjhJ8OOC5WeCez8",
                  "timestamp": "2025-02-14 14:05:29 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "The past three years for NIKE (NYSE:NKE) investors has not been profitable",
                  "url": "https://finance.yahoo.com/news/past-three-years-nike-nyse-110014049.html",
                  "source": "Yahoo Finance",
                  "image_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTc9finYCp5R7viHhx11W_AuNKpwioaLWapD9TRop3e4RGiZsDbeVd6_eazJsY",
                  "timestamp": "2025-02-17 11:00:14 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "NKE",
                      "price": 73.04,
                      "price_delta": -0.16999817,
                      "price_currency": "USD",
                      "identifier": "NKE:NYSE",
                      "displayed_name": "Nike Inc",
                      "url": "https://google.com/finance/quote/NKE:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": -0.23220621
                    }
                  ]
                },
                {
                  "type": "google_finance_news_element",
                  "title": "I think a recession is coming and want to convert 90% of 401(k) into cash – \nis this a bad idea?",
                  "url": "https://www.aol.com/think-recession-coming-want-convert-000041804.html",
                  "source": "AOL.com",
                  "image_url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQgGNtWkd-u-_J0KlJHHhs6ova088RQi3Bmm2d_ujY_kcDvp2_4PtgwLQlMqo8",
                  "timestamp": "2025-02-15 21:00:00 +00:00",
                  "quotes": null
                },
                {
                  "type": "google_finance_news_element",
                  "title": "Generation PMCA Q4 2024 Quarterly",
                  "url": "https://seekingalpha.com/article/4758939-generation-pmca-q4-2024-quarterly",
                  "source": "Seeking Alpha",
                  "image_url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS-ynrIhTAhJiBWpZY0qPdi_1SVUu9d8MeJ3MSKDufDC_WuQ9taS1NowUc1nns",
                  "timestamp": "2025-02-17 08:35:00 +00:00",
                  "quotes": [
                    {
                      "type": "google_finance_market_index_element",
                      "ticker": ".INX",
                      "market_identifier": "INDEXSP",
                      "index_value": 6114.63,
                      "index_value_delta": -0.4399414,
                      "identifier": ".INX:INDEXSP",
                      "displayed_name": "S&P 500",
                      "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-14 21:43:59 +00:00",
                      "percentage_delta": -0.0071943807
                    }
                  ]
                }
              ]
            },
            {
              "type": "google_finance_earnings_calendar",
              "rank_group": 1,
              "rank_absolute": 4,
              "items": [
                {
                  "type": "google_finance_earnings_calendar_element",
                  "title": "Carvana Co.",
                  "url": "https://www.google.com/finance/quote/CVNA:NYSE\n&location=https://event.choruscall.com/mediaframe/webcast.html?webcastid=14IGgtIR",
                  "timestamp": "2025-02-19 21:00:00 +00:00"
                },
                {
                  "type": "google_finance_earnings_calendar_element",
                  "title": "Walmart",
                  "url": "https://www.google.com/finance/quote/WMT:NYSE\n&location=https://corporate.walmart.com/news/events",
                  "timestamp": "2025-02-20 12:00:00 +00:00"
                },
                {
                  "type": "google_finance_earnings_calendar_element",
                  "title": "Booking Holdings Inc.",
                  "url": "https://www.google.com/finance/quote/BKNG:NASDAQ\n&location=https://ir.bookingholdings.com/overview/default.aspx",
                  "timestamp": "2025-02-20 21:00:00 +00:00"
                }
              ]
            },
            {
              "type": "google_finance_most_followed",
              "rank_group": 1,
              "rank_absolute": 5,
              "items": [
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "AAPL",
                  "price": 244.6,
                  "price_delta": 3.0700073,
                  "price_currency": "USD",
                  "identifier": "AAPL:NASDAQ",
                  "displayed_name": "Apple Inc",
                  "url": "https://google.com/finance/quote/AAPL:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "up",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": 1.2710667
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "GOOGL",
                  "price": 185.23,
                  "price_delta": -0.91000366,
                  "price_currency": "USD",
                  "identifier": "GOOGL:NASDAQ",
                  "displayed_name": "Alphabet Inc Class A",
                  "url": "https://google.com/finance/quote/GOOGL:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": -0.48888132
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "MSFT",
                  "price": 408.43,
                  "price_delta": -2.1100159,
                  "price_currency": "USD",
                  "identifier": "MSFT:NASDAQ",
                  "displayed_name": "Microsoft Corp",
                  "url": "https://google.com/finance/quote/MSFT:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": -0.5139611
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "AMZN",
                  "price": 228.68,
                  "price_delta": -1.6900024,
                  "price_currency": "USD",
                  "identifier": "AMZN:NASDAQ",
                  "displayed_name": "Amazon.com Inc",
                  "url": "https://google.com/finance/quote/AMZN:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": -0.73360354
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "META",
                  "price": 736.67,
                  "price_delta": 8.109985,
                  "price_currency": "USD",
                  "identifier": "META:NASDAQ",
                  "displayed_name": "Meta Platforms Inc",
                  "url": "https://google.com/finance/quote/META:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "up",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": 1.1131527
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TSLA",
                  "price": 355.84,
                  "price_delta": -0.1000061,
                  "price_currency": "USD",
                  "identifier": "TSLA:NASDAQ",
                  "displayed_name": "Tesla Inc",
                  "url": "https://google.com/finance/quote/TSLA:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": -0.028096337
                }
              ]
            },
            {
              "type": "google_finance_market_trends",
              "rank_group": 1,
              "rank_absolute": 6,
              "items": {
                "most_active": [
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "INTC",
                      "price": 23.6,
                      "price_delta": -0.5299988,
                      "price_currency": "USD",
                      "identifier": "INTC:NASDAQ",
                      "displayed_name": "Intel Corp",
                      "url": "https://google.com/finance/quote/INTC:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -2.196431
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Here’s how Intel’s stock charts look after its big rally. Should you buy it?",
                        "url": "https://www.marketwatch.com/story/heres-how-intels-stock-charts-look-after-its-big-rally-should-you-buy-it-ae816237",
                        "source": "MarketWatch",
                        "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQU-V1awVmR-CfFpdKXR5lbbP93fxUP_KIylfjXi4ZINpiJC_VcIegsjshR_lQ",
                        "timestamp": "2025-02-16 13:00:00 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "INTC",
                            "price": 23.6,
                            "price_delta": -0.5299988,
                            "price_currency": "USD",
                            "identifier": "INTC:NASDAQ",
                            "displayed_name": "Intel Corp",
                            "url": "https://google.com/finance/quote/INTC:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": -2.196431
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "NVDA",
                      "price": 138.85,
                      "price_delta": 3.5600128,
                      "price_currency": "USD",
                      "identifier": "NVDA:NASDAQ",
                      "displayed_name": "NVIDIA Corp",
                      "url": "https://google.com/finance/quote/NVDA:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": 2.6313941
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Sundar Pichai Recently Delivered Spectacular News for Nvidia Stock Investors",
                        "url": "https://www.fool.com/investing/2025/02/17/sundar-pichai-delivered-news-nvidia-stock-investor/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT9KvGBz3okDxY3RTCiGGirNxz-Xau_MvzX5kmINGzrPtcXG5xAWlyuKawJ0Dw",
                        "timestamp": "2025-02-17 09:00:00 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "NVDA",
                            "price": 138.85,
                            "price_delta": 3.5600128,
                            "price_currency": "USD",
                            "identifier": "NVDA:NASDAQ",
                            "displayed_name": "NVIDIA Corp",
                            "url": "https://google.com/finance/quote/NVDA:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 2.6313941
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "SOUN",
                      "price": 10.965,
                      "price_delta": -4.285,
                      "price_currency": "USD",
                      "identifier": "SOUN:NASDAQ",
                      "displayed_name": "SoundHound AI Inc",
                      "url": "https://google.com/finance/quote/SOUN:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -28.09836
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Prediction: 2 Stocks That Will Be Worth More Than SoundHound AI a Year From \nNow",
                        "url": "https://www.fool.com/investing/2025/02/16/prediction-2-stocks-that-will-be-worth-more-than-s/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTtvyfW2yHpQPcxaVxi8KsNWcvDEtDlZwEmkAU0CP0LKYl_4NmqN5PIAb3WRTg",
                        "timestamp": "2025-02-16 17:30:00 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "SOUN",
                            "price": 10.965,
                            "price_delta": -4.285,
                            "price_currency": "USD",
                            "identifier": "SOUN:NASDAQ",
                            "displayed_name": "SoundHound AI Inc",
                            "url": "https://google.com/finance/quote/SOUN:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": -28.09836
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "SMCI",
                      "price": 47.91,
                      "price_delta": 5.630001,
                      "price_currency": "USD",
                      "identifier": "SMCI:NASDAQ",
                      "displayed_name": "Super Micro Computer Inc",
                      "url": "https://google.com/finance/quote/SMCI:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": 13.315991
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Super Micro Computer's Roller-Coaster Ride Continues. What Should Investors \nDo With the Stock?",
                        "url": "https://www.nasdaq.com/articles/super-micro-computers-roller-coaster-ride-continues-what-should-investors-do-stock",
                        "source": "Nasdaq",
                        "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8lcaRUHBs1yG3Z3A4xxEVndyt2LzdlwK8fqG4dHYbxwl_U_1s2fa81EuRCK0",
                        "timestamp": "2025-02-17 09:14:00 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "SMCI",
                            "price": 47.91,
                            "price_delta": 5.630001,
                            "price_currency": "USD",
                            "identifier": "SMCI:NASDAQ",
                            "displayed_name": "Super Micro Computer Inc",
                            "url": "https://google.com/finance/quote/SMCI:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 13.315991
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "BBAI",
                      "price": 9.02,
                      "price_delta": -0.7599993,
                      "price_currency": "USD",
                      "identifier": "BBAI:NYSE",
                      "displayed_name": "BigBear.ai Holdings Inc",
                      "url": "https://google.com/finance/quote/BBAI:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:01 +00:00",
                      "percentage_delta": -7.770954
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Is BigBear.ai Stock the Next NVIDIA and a Buy?",
                        "url": "https://www.zacks.com/stock/news/2416468/is-bigbearai-stock-the-next-nvidia-and-a-buy",
                        "source": "Zacks Investment Research",
                        "image_url": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRPvRSKUrkxROu_52knKu0AqoPeUkjW9o18aI4USugJcF28q6Ys8Yu7SUNmchY",
                        "timestamp": "2025-02-14 19:30:58 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "BBAI",
                            "price": 9.02,
                            "price_delta": -0.7599993,
                            "price_currency": "USD",
                            "identifier": "BBAI:NYSE",
                            "displayed_name": "BigBear.ai Holdings Inc",
                            "url": "https://google.com/finance/quote/BBAI:NYSE?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:04:01 +00:00",
                            "percentage_delta": -7.770954
                          },
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "NVDA",
                            "price": 138.85,
                            "price_delta": 3.5600128,
                            "price_currency": "USD",
                            "identifier": "NVDA:NASDAQ",
                            "displayed_name": "NVIDIA Corp",
                            "url": "https://google.com/finance/quote/NVDA:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 2.6313941
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "RXRX",
                      "price": 10.53,
                      "price_delta": 2.0299997,
                      "price_currency": "USD",
                      "identifier": "RXRX:NASDAQ",
                      "displayed_name": "Recursion Pharmaceuticals Inc",
                      "url": "https://google.com/finance/quote/RXRX:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": 23.882349
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Why Recursion Pharmaceuticals Stock Is Soaring Today",
                        "url": "https://www.fool.com/investing/2025/02/14/why-recursion-pharmaceuticals-stock-is-soaring-tod/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTeaY4bSm1Tn_i1mUG4XJ7T1l_0eHjGAk__ilKTdQ0NH-5SsLWGjFnapD2EQ8M",
                        "timestamp": "2025-02-14 17:07:40 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "NVDA",
                            "price": 138.85,
                            "price_delta": 3.5600128,
                            "price_currency": "USD",
                            "identifier": "NVDA:NASDAQ",
                            "displayed_name": "NVIDIA Corp",
                            "url": "https://google.com/finance/quote/NVDA:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 2.6313941
                          },
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "RXRX",
                            "price": 10.53,
                            "price_delta": 2.0299997,
                            "price_currency": "USD",
                            "identifier": "RXRX:NASDAQ",
                            "displayed_name": "Recursion Pharmaceuticals Inc",
                            "url": "https://google.com/finance/quote/RXRX:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 23.882349
                          }
                        ]
                      }
                    ]
                  }
                ],
                "gainers": [
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "RXRX",
                      "price": 10.53,
                      "price_delta": 2.0299997,
                      "price_currency": "USD",
                      "identifier": "RXRX:NASDAQ",
                      "displayed_name": "Recursion Pharmaceuticals Inc",
                      "url": "https://google.com/finance/quote/RXRX:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": 23.882349
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Why Recursion Pharmaceuticals Stock Is Soaring Today",
                        "url": "https://www.fool.com/investing/2025/02/14/why-recursion-pharmaceuticals-stock-is-soaring-tod/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTeaY4bSm1Tn_i1mUG4XJ7T1l_0eHjGAk__ilKTdQ0NH-5SsLWGjFnapD2EQ8M",
                        "timestamp": "2025-02-14 17:07:40 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "NVDA",
                            "price": 138.85,
                            "price_delta": 3.5600128,
                            "price_currency": "USD",
                            "identifier": "NVDA:NASDAQ",
                            "displayed_name": "NVIDIA Corp",
                            "url": "https://google.com/finance/quote/NVDA:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 2.6313941
                          },
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "RXRX",
                            "price": 10.53,
                            "price_delta": 2.0299997,
                            "price_currency": "USD",
                            "identifier": "RXRX:NASDAQ",
                            "displayed_name": "Recursion Pharmaceuticals Inc",
                            "url": "https://google.com/finance/quote/RXRX:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 23.882349
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "GT",
                      "price": 9.58,
                      "price_delta": 1.4099998,
                      "price_currency": "USD",
                      "identifier": "GT:NASDAQ",
                      "displayed_name": "Goodyear Tire & Rubber Co",
                      "url": "https://google.com/finance/quote/GT:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": 17.25826
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Goodyear Tire & Rubber Co (GT) Q4 2024 Earnings Call Highlights: Navigating \nChallenges with ...",
                        "url": "https://finance.yahoo.com/news/goodyear-tire-rubber-co-gt-070530596.html",
                        "source": "Yahoo Finance",
                        "image_url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQmt_be1g5M0dX1V6ECvxerfwLwN0ueanEPY0lFFfyMERwZHnc1DXBrc_KWmM0",
                        "timestamp": "2025-02-15 07:05:30 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "GT",
                            "price": 9.58,
                            "price_delta": 1.4099998,
                            "price_currency": "USD",
                            "identifier": "GT:NASDAQ",
                            "displayed_name": "Goodyear Tire & Rubber Co",
                            "url": "https://google.com/finance/quote/GT:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": 17.25826
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "PCOR",
                      "price": 87.5,
                      "price_delta": 12.400002,
                      "price_currency": "USD",
                      "identifier": "PCOR:NYSE",
                      "displayed_name": "Procore Technologies Inc",
                      "url": "https://google.com/finance/quote/PCOR:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "up",
                      "timestamp": "2025-02-15 01:04:01 +00:00",
                      "percentage_delta": 16.51132
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Procore price target raised to $95 from $85 at Scotiabank",
                        "url": "https://finance.yahoo.com/news/procore-price-target-raised-95-150508103.html",
                        "source": "Yahoo Finance",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRj1GKITz8YIX2FLKIjNUOlqh-yJmTfigYjhdhFjMlg2xU2Xq2dyzK3UvY5HFQ",
                        "timestamp": "2025-02-15 15:05:08 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "PCOR",
                            "price": 87.5,
                            "price_delta": 12.400002,
                            "price_currency": "USD",
                            "identifier": "PCOR:NYSE",
                            "displayed_name": "Procore Technologies Inc",
                            "url": "https://google.com/finance/quote/PCOR:NYSE?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "up",
                            "timestamp": "2025-02-15 01:04:01 +00:00",
                            "percentage_delta": 16.51132
                          }
                        ]
                      }
                    ]
                  }
                ],
                "losers": [
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "SOUN",
                      "price": 10.965,
                      "price_delta": -4.285,
                      "price_currency": "USD",
                      "identifier": "SOUN:NASDAQ",
                      "displayed_name": "SoundHound AI Inc",
                      "url": "https://google.com/finance/quote/SOUN:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -28.09836
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Prediction: 2 Stocks That Will Be Worth More Than SoundHound AI a Year From \nNow",
                        "url": "https://www.fool.com/investing/2025/02/16/prediction-2-stocks-that-will-be-worth-more-than-s/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTtvyfW2yHpQPcxaVxi8KsNWcvDEtDlZwEmkAU0CP0LKYl_4NmqN5PIAb3WRTg",
                        "timestamp": "2025-02-16 17:30:00 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "SOUN",
                            "price": 10.965,
                            "price_delta": -4.285,
                            "price_currency": "USD",
                            "identifier": "SOUN:NASDAQ",
                            "displayed_name": "SoundHound AI Inc",
                            "url": "https://google.com/finance/quote/SOUN:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": -28.09836
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "INFA",
                      "price": 19.75,
                      "price_delta": -5.42,
                      "price_currency": "USD",
                      "identifier": "INFA:NYSE",
                      "displayed_name": "Informatica Inc",
                      "url": "https://google.com/finance/quote/INFA:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": -21.533571
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Why Did BofA Downgrade Informatica (INFA) Despite Strong Earnings?",
                        "url": "https://finance.yahoo.com/news/why-did-bofa-downgrade-informatica-213239805.html",
                        "source": "Yahoo Finance",
                        "image_url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS-T9-bVX-4RiOKJcCYHdFDLOkgMi03qahDczL9uptrgEmaRLdZYLq3aT2VHiQ",
                        "timestamp": "2025-02-16 21:32:39 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "MSFT",
                            "price": 408.43,
                            "price_delta": -2.1100159,
                            "price_currency": "USD",
                            "identifier": "MSFT:NASDAQ",
                            "displayed_name": "Microsoft Corp",
                            "url": "https://google.com/finance/quote/MSFT:NASDAQ?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:30:00 +00:00",
                            "percentage_delta": -0.5139611
                          },
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "INFA",
                            "price": 19.75,
                            "price_delta": -5.42,
                            "price_currency": "USD",
                            "identifier": "INFA:NYSE",
                            "displayed_name": "Informatica Inc",
                            "url": "https://google.com/finance/quote/INFA:NYSE?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:04:00 +00:00",
                            "percentage_delta": -21.533571
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "TWLO",
                      "price": 125.17,
                      "price_delta": -22.11,
                      "price_currency": "USD",
                      "identifier": "TWLO:NYSE",
                      "displayed_name": "Twilio Inc",
                      "url": "https://google.com/finance/quote/TWLO:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": -15.012222
                    },
                    "news": [
                      {
                        "type": "google_finance_news_element",
                        "title": "Why Twilio Stock Just Crashed 16.5%",
                        "url": "https://www.fool.com/investing/2025/02/14/why-twilio-stock-just-crashed-165/",
                        "source": "The Motley Fool",
                        "image_url": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQHNBW7lIdNUK3OKObJYi82fnSJ_RqJoNz0wXdO4LRptrWcCay5YDcd8nbfCt4",
                        "timestamp": "2025-02-14 17:23:52 +00:00",
                        "quotes": [
                          {
                            "type": "google_finance_market_instrument_element",
                            "ticker": "TWLO",
                            "price": 125.17,
                            "price_delta": -22.11,
                            "price_currency": "USD",
                            "identifier": "TWLO:NYSE",
                            "displayed_name": "Twilio Inc",
                            "url": "https://google.com/finance/quote/TWLO:NYSE?hl=en&gl=us",
                            "location": "America/New_York",
                            "trend": "down",
                            "timestamp": "2025-02-15 01:04:00 +00:00",
                            "percentage_delta": -15.012222
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "HL",
                      "price": 5.44,
                      "price_delta": -0.93499994,
                      "price_currency": "USD",
                      "identifier": "HL:NYSE",
                      "displayed_name": "Hecla Mining Co",
                      "url": "https://google.com/finance/quote/HL:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": -14.666666
                    },
                    "news": null
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "GDDY",
                      "price": 182.19,
                      "price_delta": -30.395004,
                      "price_currency": "USD",
                      "identifier": "GDDY:NYSE",
                      "displayed_name": "Godaddy Inc",
                      "url": "https://google.com/finance/quote/GDDY:NYSE?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:04:00 +00:00",
                      "percentage_delta": -14.2978115
                    },
                    "news": null
                  },
                  {
                    "type": "google_finance_market_trends_element",
                    "quote": {
                      "type": "google_finance_market_instrument_element",
                      "ticker": "CALM",
                      "price": 95.1,
                      "price_delta": -13.5,
                      "price_currency": "USD",
                      "identifier": "CALM:NASDAQ",
                      "displayed_name": "Cal-Maine Foods Inc",
                      "url": "https://google.com/finance/quote/CALM:NASDAQ?hl=en&gl=us",
                      "location": "America/New_York",
                      "trend": "down",
                      "timestamp": "2025-02-15 01:30:00 +00:00",
                      "percentage_delta": -12.43094
                    },
                    "news": null
                  }
                ]
              }
            },
            {
              "type": "google_finance_interested",
              "rank_group": 2,
              "rank_absolute": 7,
              "items": [
                {
                  "type": "google_finance_market_index_element",
                  "ticker": "OMXH25",
                  "market_identifier": "INDEXNASDAQ",
                  "index_value": 4742.749,
                  "index_value_delta": 39.867188,
                  "identifier": "OMXH25:INDEXNASDAQ",
                  "displayed_name": "OMX Helsinki 25",
                  "url": "https://google.com/finance/quote/OMXH25:INDEXNASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:28 +00:00",
                  "percentage_delta": 0.84771824
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": ".INX",
                  "market_identifier": "INDEXSP",
                  "index_value": 6114.63,
                  "index_value_delta": -0.4399414,
                  "identifier": ".INX:INDEXSP",
                  "displayed_name": "S&P 500",
                  "url": "https://google.com/finance/quote/.INX:INDEXSP?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-14 21:43:59 +00:00",
                  "percentage_delta": -0.0071943807
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": ".DJI",
                  "market_identifier": "INDEXDJX",
                  "index_value": 44546.08,
                  "index_value_delta": -165.35156,
                  "identifier": ".DJI:INDEXDJX",
                  "displayed_name": "Dow Jones Industrial Average",
                  "url": "https://google.com/finance/quote/.DJI:INDEXDJX?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-14 21:44:00 +00:00",
                  "percentage_delta": -0.36981946
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TSLA",
                  "price": 355.84,
                  "price_delta": -0.1000061,
                  "price_currency": "USD",
                  "identifier": "TSLA:NASDAQ",
                  "displayed_name": "Tesla Inc",
                  "url": "https://google.com/finance/quote/TSLA:NASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "down",
                  "timestamp": "2025-02-15 01:30:00 +00:00",
                  "percentage_delta": -0.028096337
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "WRT1V",
                  "price": 18.47,
                  "price_delta": -0.1400013,
                  "price_currency": "EUR",
                  "identifier": "WRT1V:HEL",
                  "displayed_name": "Wartsila Oyj Abp",
                  "url": "https://google.com/finance/quote/WRT1V:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "down",
                  "timestamp": "2025-02-17 11:29:19 +00:00",
                  "percentage_delta": -0.75229067
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "OUT1V",
                  "price": 3.54,
                  "price_delta": 0.013000011,
                  "price_currency": "EUR",
                  "identifier": "OUT1V:HEL",
                  "displayed_name": "Outokumpu Oyj",
                  "url": "https://google.com/finance/quote/OUT1V:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:28:47 +00:00",
                  "percentage_delta": 0.36858553
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TYRES",
                  "price": 6.414,
                  "price_delta": 0.026000023,
                  "price_currency": "EUR",
                  "identifier": "TYRES:HEL",
                  "displayed_name": "Nokian Tyres plc",
                  "url": "https://google.com/finance/quote/TYRES:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:26 +00:00",
                  "percentage_delta": 0.4070135
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "KNEBV",
                  "price": 52.96,
                  "price_delta": 0.13999939,
                  "price_currency": "EUR",
                  "identifier": "KNEBV:HEL",
                  "displayed_name": "Kone Oyj",
                  "url": "https://google.com/finance/quote/KNEBV:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:10 +00:00",
                  "percentage_delta": 0.26504996
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "QTCOM",
                  "price": 90.15,
                  "price_delta": 1.5,
                  "price_currency": "EUR",
                  "identifier": "QTCOM:HEL",
                  "displayed_name": "Qt Group Oyj",
                  "url": "https://google.com/finance/quote/QTCOM:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:13 +00:00",
                  "percentage_delta": 1.6920474
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "LEHTO",
                  "price": 0.0318,
                  "price_delta": 0,
                  "price_currency": "EUR",
                  "identifier": "LEHTO:HEL",
                  "displayed_name": "Lehto Group Oyj",
                  "url": "https://google.com/finance/quote/LEHTO:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "stable",
                  "timestamp": "2025-02-17 07:44:59 +00:00",
                  "percentage_delta": 0
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "STERV",
                  "price": 11.25,
                  "price_delta": 0.32999992,
                  "price_currency": "EUR",
                  "identifier": "STERV:HEL",
                  "displayed_name": "Stora Enso OYJ Class R",
                  "url": "https://google.com/finance/quote/STERV:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:29:31 +00:00",
                  "percentage_delta": 3.0219772
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": "NDX",
                  "market_identifier": "INDEXNASDAQ",
                  "index_value": 22114.69,
                  "index_value_delta": 83.97461,
                  "identifier": "NDX:INDEXNASDAQ",
                  "displayed_name": "Nasdaq-100",
                  "url": "https://google.com/finance/quote/NDX:INDEXNASDAQ?hl=en&gl=us",
                  "location": "America/New_York",
                  "trend": "up",
                  "timestamp": "2025-02-14 22:15:59 +00:00",
                  "percentage_delta": 0.3811706
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "HUH1V",
                  "price": 37.7,
                  "price_delta": -0.8199997,
                  "price_currency": "EUR",
                  "identifier": "HUH1V:HEL",
                  "displayed_name": "Huhtamaki Oyj",
                  "url": "https://google.com/finance/quote/HUH1V:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "down",
                  "timestamp": "2025-02-17 11:29:31 +00:00",
                  "percentage_delta": -2.1287634
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": "DAX",
                  "market_identifier": "INDEXDB",
                  "index_value": 22695.29,
                  "index_value_delta": 181.86914,
                  "identifier": "DAX:INDEXDB",
                  "displayed_name": "DAX PERFORMANCE-INDEX",
                  "url": "https://google.com/finance/quote/DAX:INDEXDB?hl=en&gl=us",
                  "location": "Europe/Berlin",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:14:11 +00:00",
                  "percentage_delta": 0.80782545
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "CTY1S",
                  "price": 3.412,
                  "price_delta": -0.026000023,
                  "price_currency": "EUR",
                  "identifier": "CTY1S:HEL",
                  "displayed_name": "Citycon Oyj",
                  "url": "https://google.com/finance/quote/CTY1S:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "down",
                  "timestamp": "2025-02-17 11:15:59 +00:00",
                  "percentage_delta": -0.7562543
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TTALO",
                  "price": 11.08,
                  "price_delta": 0.19999981,
                  "price_currency": "EUR",
                  "identifier": "TTALO:HEL",
                  "displayed_name": "Terveystalo Oyj",
                  "url": "https://google.com/finance/quote/TTALO:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:26:46 +00:00",
                  "percentage_delta": 1.8382335
                },
                {
                  "type": "google_finance_market_index_element",
                  "ticker": "VIX",
                  "market_identifier": "INDEXCBOE",
                  "index_value": 15.39,
                  "index_value_delta": 0.28999996,
                  "identifier": "VIX:INDEXCBOE",
                  "displayed_name": "VIX",
                  "url": "https://google.com/finance/quote/VIX:INDEXCBOE?hl=en&gl=us",
                  "location": "America/Chicago",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:14:01 +00:00",
                  "percentage_delta": 1.9205295
                },
                {
                  "type": "google_finance_market_instrument_element",
                  "ticker": "TNOM",
                  "price": 3.335,
                  "price_delta": 0.06500006,
                  "price_currency": "EUR",
                  "identifier": "TNOM:HEL",
                  "displayed_name": "Talenom Oyj",
                  "url": "https://google.com/finance/quote/TNOM:HEL?hl=en&gl=us",
                  "location": "Europe/Helsinki",
                  "trend": "up",
                  "timestamp": "2025-02-17 11:25:21 +00:00",
                  "percentage_delta": 1.9877694
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Description of the fields for sending a request:

Field name Type Description
id string task identifier
unique task identifier in our system in the UUID format
you will be able to use it within 30 days to request the results of the task at any time

‌‌
‌‌As a response of the API server, you will receive JSON-encoded data containing a tasks array with the information specific to the set tasks.

You can also get all available SERP features and possible extra elements by making a request to the following Sandbox URL:
https://sandbox.dataforseo.com/v3/serp/google/finance_explore/task_get/advanced/00000000-0000-0000-0000-000000000000
The response will include all available items in the Google Ads Advertisers SERP Advanced endpoint with the fields containing dummy data.
You won’t be charged for using Sandbox endpoints.

Description of the fields in the results array:

                               

Field name Type Description
version string the current version of the API
status_code integer general status code
you can find the full list of the response codes here
Note: we strongly recommend designing a necessary system for handling related exceptional or error conditions
status_message string general informational message
you can find the full list of general informational messages here
time string execution time, seconds
cost float total tasks cost, USD
tasks_count integer the number of tasks in the tasks array
tasks_error integer the number of tasks in the tasks array returned with an error
tasks array array of tasks
        id string task identifier
unique task identifier in our system in the UUID format
        status_code integer status code of the task
generated by DataForSEO; can be within the following range: 10000-60000
you can find the full list of the response codes here
        status_message string informational message of the task
you can find the full list of general informational messages here
        time string execution time, seconds
        cost float cost of the task, USD
        result_count integer number of elements in the result array
        path array URL path
        data object contains the same parameters that you specified in the POST request
        result array array of results
            keyword string keyword received in a POST array
the keyword is returned with decoded %## (plus character ‘+’ will be decoded to a space character)
            type string search engine type
in this case, equals finance_explore
            se_domain string search engine domain in a POST array
            location_code string location code in a POST array
            language_code string language code in a POST array
            check_url string direct URL to search engine results
you can use it to make sure that we provided accurate results
            datetime string date and time when the result was received
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2019-11-15 12:57:46 +00:00
            spell object autocorrection of the search engine
if the search engine provided results for a keyword that was corrected, we will specify the keyword corrected by the search engine and the type of autocorrection
            refinement_chips object search refinement chips
in this case, the value will be null
            item_types array types of search results in SERP
contains types of search results (items) found in SERP;
possible item types: google_finance_hero_groups, google_finance_interested, google_finance_news, google_finance_earnings_calendar, google_finance_most_followed, google_finance_market_trends, google_finance_people_also_search
            se_results_count integer total number of results in SERP
            items_count integer the number of results returned in the items array
            items array elements of search results found in SERP
                google_finance_hero_groups item in SERP
                type string type of element = ‘google_finance_hero_groups’
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                markets array financial markets data
array of items containing market indexes and other financial information related to these indexes
                    market string financial market identifier
possible values: US, Europe, Asia, Currencies, Crypto, Futures
                    items array market indexes data
array of items containing market indexes data;
possible type of items: google_finance_asset_pair_element, google_finance_market_instrument_element, google_finance_market_index_element
                        type string type of element = ‘google_finance_market_index_element’
                        ticker string ticker of the market index
example: DAX
                        market_identifier string market identifier
example: INDEXDB
                        index_value float value of the market index
numerical value of the index at a given timestamp
                        index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                        identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                        displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
example: Europe/Paris
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_asset_pair_element’
                        base_symbol string identifier of the base asset in a pair
example: EUR
                        quote_symbol string identifier of the quote asset in a pair
example: USD
                        base_display_name string full name of the base asset in a pair
example: Euro
                        quote_display_name string full name of the base asset in a pair
example: Euro
                        price float value of the base asset compared to the quote asset
                        price_delta float change in price
change in price at a given timestamp
                        identifier string finance pair identifier
example: EUR-USD
                        displayed_name string displayed name of the finance pair
example: EUR / USD
                        url string URL to finance pair on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value
                        type string type of element = ‘google_finance_market_instrument_element’
                        ticker string ticker of the market index
example: YMW00
                        price float price of the market instrument
price of the market instrument at a given timestamp
                        price_delta float change in price of the market instrument
change in price at a given timestamp
                        price_currency string price currency
example: USD
                        identifier string full identifier of the market index
example: YMW00:CBOT
                        displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                google_finance_interested item in SERP
                type string type of element = ‘google_finance_interested’
list of market indexes generated from recent searches, followed securities, and other activity
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                items array market indexes related to the market trends element
possible type of items: google_finance_asset_pair_element, google_finance_market_instrument_element, google_finance_market_index_element
                        type string type of element = ‘google_finance_market_index_element’
                        ticker string ticker of the market index
example: DAX
                        market_identifier string market identifier
example: INDEXDB
                        index_value float value of the market index
numerical value of the index at a given timestamp
                        index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                        identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                        displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
example: Europe/Paris
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_market_instrument_element’
                        ticker string ticker of the market index
example: YMW00
                        price float price of the market instrument
price of the market instrument at a given timestamp
                        price_delta float change in price of the market instrument
change in price at a given timestamp
                        price_currency string price currency
example: USD
                        identifier string full identifier of the market index
example: YMW00:CBOT
                        displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_asset_pair_element’
                        base_symbol string identifier of the base asset in a pair
example: EUR
                        quote_symbol string identifier of the quote asset in a pair
example: USD
                        base_display_name string full name of the base asset in a pair
example: Euro
                        quote_display_name string full name of the base asset in a pair
example: Euro
                        price float value of the base asset compared to the quote asset
                        price_delta float change in price
change in price at a given timestamp
                        identifier string finance pair identifier
example: EUR-USD
                        displayed_name string displayed name of the finance pair
example: EUR / USD
                        url string URL to finance pair on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                google_finance_news item in SERP
                type string type of element = ‘google_finance_news’
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                title string title of the news element
example: In the news
                sub_title string sub-title of the news element
example: Based on Europe, Middle East, and Africa
                items array google finance news articles
                        type string type of element = ‘google_finance_news_element’
                        title string title of the news article
                        url string URL of the news article
                        source string name of the news source
name of the website where the news article is published
                        image_url string featured image URL
URL of the news article’s featured image
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        quotes array market indexes quoted in the news article
information about market indexes quoted in the google_finance_news_element
                                type string type of element = ‘google_finance_market_index_element’
                                ticker string ticker of the market index
example: DAX
                                market_identifier string market identifier
example: INDEXDB
                                index_value float value of the market index
numerical value of the index at a given timestamp
                                index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                                identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                                displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                                url string URL to the page of the market index on Google Finance
                                location string location of the market index
example: Europe/Paris
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                                type string type of element = ‘google_finance_market_instrument_element’
                                ticker string ticker of the market index
example: YMW00
                                price float price of the market instrument
price of the market instrument at a given timestamp
                                price_delta float change in price of the market instrument
change in price at a given timestamp
                                price_currency string price currency
example: USD
                                identifier string full identifier of the market index
example: YMW00:CBOT
                                displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                                url string URL to the page of the market index on Google Finance
                                location string location of the market index
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                                type string type of element = ‘google_finance_asset_pair_element’
                                base_symbol string identifier of the base asset in a pair
example: EUR
                                quote_symbol string identifier of the quote asset in a pair
example: USD
                                base_display_name string full name of the base asset in a pair
example: Euro
                                quote_display_name string full name of the base asset in a pair
example: Euro
                                price float value of the base asset compared to the quote asset
                                price_delta float change in price
change in price at a given timestamp
                                identifier string finance pair identifier
example: EUR-USD
                                displayed_name string displayed name of the finance pair
example: EUR / USD
                                url string URL to finance pair on Google Finance
                                location string location of the market index
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                google_finance_earnings_calendar item in SERP
                type string type of element = ‘google_finance_earnings_calendar’
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                items array array of item objects
                        type string type of element = ‘google_finance_earnings_calendar_element’
                        title string title of the earnings calendar element
                        url string link to Google Calendar
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                google_finance_most_followed item in SERP
                type string type of element = ‘google_finance_most_followed’
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                items array array of item objects
possible type of items: google_finance_asset_pair_element, google_finance_market_instrument_element, google_finance_market_index_element
                        type string type of element = ‘google_finance_asset_pair_element’
                        base_symbol string identifier of the base asset in a pair
example: EUR
                        quote_symbol string identifier of the quote asset in a pair
example: USD
                        base_display_name string full name of the base asset in a pair
example: Euro
                        quote_display_name string full name of the base asset in a pair
example: Euro
                        price float value of the base asset compared to the quote asset
                        price_delta float change in price
change in price at a given timestamp
                        identifier string finance pair identifier
example: EUR-USD
                        displayed_name string displayed name of the finance pair
example: EUR / USD
                        url string URL to finance pair on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_market_index_element’
                        ticker string ticker of the market index
example: DAX
                        market_identifier string market identifier
example: INDEXDB
                        index_value float value of the market index
numerical value of the index at a given timestamp
                        index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                        identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                        displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
example: Europe/Paris
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_market_instrument_element’
                        ticker string ticker of the market index
example: YMW00
                        price float price of the market instrument
price of the market instrument at a given timestamp
                        price_delta float change in price of the market instrument
change in price at a given timestamp
                        price_currency string price currency
example: USD
                        identifier string full identifier of the market index
example: YMW00:CBOT
                        displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                google_finance_market_trends item in SERP
                type string type of element = ‘google_finance_market_trends’
                rank_group integer group rank in SERP
position within a group of elements with identical type values
positions of elements with different type values are omitted from rank_group
                rank_absolute integer absolute rank in SERP
absolute position among all the elements in SERP
                items object object with arrays of items
contains the following arrays: most_active, gainers, losers
                   most_active array array of items
this array can take the following names: most_active, gainers, losers
                       type string type of element = ‘google_finance_market_trends_element’
                       quote object object of items
array contains the following type of items: google_finance_asset_pair_element, google_finance_market_instrument_element, google_finance_market_index_element
                           type string type of element = ‘google_finance_market_index_element’
                           ticker string ticker of the market index
example: DAX
                           market_identifier string market identifier
example: INDEXDB
                           index_value float value of the market index
numerical value of the index at a given timestamp
                           index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                           identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                           displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                           url string URL to the page of the market index on Google Finance
                           location string location of the market index
example: Europe/Paris
                           trend string growth trend of the market index
possible values: up, down, stable
                           timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                           percentage_delta float percentage of change in value of the market index
                           type string type of element = ‘google_finance_market_instrument_element’
                           ticker string ticker of the market index
example: YMW00
                           price float price of the market instrument
price of the market instrument at a given timestamp
                           price_delta float change in price of the market instrument
change in price at a given timestamp
                           price_currency string price currency
example: USD
                           identifier string full identifier of the market index
example: YMW00:CBOT
                           displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                           url string URL to the page of the market index on Google Finance
                           location string location of the market index
                           trend string growth trend of the market index
possible values: up, down, stable
                           timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                           percentage_delta float percentage of change in value of the market index
                           type string type of element = ‘google_finance_asset_pair_element’
                           base_symbol string identifier of the base asset in a pair
example: EUR
                           quote_symbol string identifier of the quote asset in a pair
example: USD
                                base_display_name string full name of the base asset in a pair
example: Euro
                                quote_display_name string full name of the base asset in a pair
example: Euro
                                price float value of the base asset compared to the quote asset
                                price_delta float change in price
change in price at a given timestamp
                                identifier string finance pair identifier
example: EUR-USD
                                displayed_name string displayed name of the finance pair
example: EUR / USD
                                url string URL to finance pair on Google Finance
                                location string location of the market index
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                       news array array of items
array contains the following type of items: google_finance_news_element
                              type string type of element = ‘google_finance_news_element’
                              title string title of the news article
                              url string URL of the news article
                              source string name of the news source
name of the website where the news article is published
                              image_url string featured image URL
URL of the news article’s featured image
                              timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                              quotes array market indexes quoted in the news article
information about market indexes quoted in the google_finance_news_element
                                type string type of element = ‘google_finance_market_index_element’
                                ticker string ticker of the market index
example: DAX
                                market_identifier string market identifier
example: INDEXDB
                                index_value float value of the market index
numerical value of the index at a given timestamp
                                index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                                identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                                displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                                url string URL to the page of the market index on Google Finance
                                location string location of the market index
example: Europe/Paris
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                                type string type of element = ‘google_finance_market_instrument_element’
                                ticker string ticker of the market index
example: YMW00
                                price float price of the market instrument
price of the market instrument at a given timestamp
                                price_delta float change in price of the market instrument
change in price at a given timestamp
                                price_currency string price currency
example: USD
                                identifier string full identifier of the market index
example: YMW00:CBOT
                                displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                                url string URL to the page of the market index on Google Finance
                                location string location of the market index
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                                type string type of element = ‘google_finance_asset_pair_element’
                                base_symbol string identifier of the base asset in a pair
example: EUR
                                quote_symbol string identifier of the quote asset in a pair
example: USD
                                base_display_name string full name of the base asset in a pair
example: Euro
                                quote_display_name string full name of the base asset in a pair
example: Euro
                                price float value of the base asset compared to the quote asset
                                price_delta float change in price
change in price at a given timestamp
                                identifier string finance pair identifier
example: EUR-USD
                                displayed_name string displayed name of the finance pair
example: EUR / USD
                                url string URL to finance pair on Google Finance
                                location string location of the market index
                                trend string growth trend of the market index
possible values: up, down, stable
                                timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                                percentage_delta float percentage of change in value of the market index
                google_finance_people_also_search item in SERP
                type string type of element = ‘google_finance_people_also_search’
                items array market indexes related to the market trends element
possible type of items: google_finance_asset_pair_element, google_finance_market_instrument_element, google_finance_market_index_element
                        type string type of element = ‘google_finance_market_index_element’
                        ticker string ticker of the market index
example: DAX
                        market_identifier string market identifier
example: INDEXDB
                        index_value float value of the market index
numerical value of the index at a given timestamp
                        index_value_delta float change in value of the market index
change in the index_value at a given timestamp
                        identifier string identifier of the element
full identifier of the element that consists from ticker and market_identifier
example: PX1:INDEXDB
                        displayed_name string name of the market index as displayed on Google Finance
example: CAC 40
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
example: Europe/Paris
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_market_instrument_element’
                        ticker string ticker of the market index
example: YMW00
                        price float price of the market instrument
price of the market instrument at a given timestamp
                        price_delta float change in price of the market instrument
change in price at a given timestamp
                        price_currency string price currency
example: USD
                        identifier string full identifier of the market index
example: YMW00:CBOT
                        displayed_name string displayed name of the market index
example: E-mini Dow ($5)
                        url string URL to the page of the market index on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index
                        type string type of element = ‘google_finance_asset_pair_element’
                        base_symbol string identifier of the base asset in a pair
example: EUR
                        quote_symbol string identifier of the quote asset in a pair
example: USD
                        base_display_name string full name of the base asset in a pair
example: Euro
                        quote_display_name string full name of the base asset in a pair
example: Euro
                        price float value of the base asset compared to the quote asset
                        price_delta float change in price
change in price at a given timestamp
                        identifier string finance pair identifier
example: EUR-USD
                        displayed_name string displayed name of the finance pair
example: EUR / USD
                        url string URL to finance pair on Google Finance
                        location string location of the market index
                        trend string growth trend of the market index
possible values: up, down, stable
                        timestamp string date and time of the value readout
in the UTC format: “yyyy-mm-dd hh-mm-ss +00:00”
example:
2025-02-10 09:40:00 +00:00
                        percentage_delta float percentage of change in value of the market index

‌‌