100 free credits. No credit card required.Start building
Logo
Google Finance logo
100 free credits. No credit card required

Google Finance Quote API

Scrape Google Finance Quote data with one API call. Returns ONE rich, unified Quote for a financial instrument keyed by its `keyword` (`TICKER:EXCHANGE` for stocks/ETFs/indices, e.g. 'GOOGL:NASDAQ' / 'VOO:NYSEARCA' / '.INX:INDEXSP', or a forex/crypto pair, e.g. 'EUR-USD' / 'BTC-USD'). A single call bundles the live price + intraday graph, fundamentals (market cap, P/E, dividend yield, 52-week range, volumes), the company profile (CEO, founded, HQ, employees), quarterly + annual financials (equities), and peer instruments: all on ONE canonical shape across stocks, ETFs, indices, crypto, and forex, distinguished by `quote.type`. Forex/crypto pairs populate `quote.pair` (base/quote symbols) and have a null `ticker`. Get the exact `keyword` from /v1/finance/ticker-search. Read live from the Google Finance SERP (~5-10s).

Last updated September 2026Maintained by the SocialCrawl team

Returns one instrument's full quote: live price and intraday graph, market cap, P/E, dividend yield, 52 week range, company profile, financials, and peers.

Use it when you know the exact symbol, like GOOGL:NASDAQ or BTC-USD; ticker-search gives you that symbol from a name.

Searching 65 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
Google Finance API

What can you do with the Quote API?

The Quote endpoint gives you structured Google Finance data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/finance/quote?keyword=GOOGL%3ANASDAQ"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/finance/quote",
    params={
    'keyword': 'GOOGL:NASDAQ',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/finance/quote?keyword=GOOGL%3ANASDAQ",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
keywordYesInstrument identifier: TICKER:EXCHANGE for stocks/ETFs/indices ('GOOGL:NASDAQ', '.INX:INDEXSP') or a forex/crypto pair ('EUR-USD', 'BTC-USD'). Use the `id` returned by ticker-search.
languageNoLanguage as a DFS name ('English') or 2-letter code ('en'). Defaults to English.
locationNoLocation as a DFS name ('United States') or numeric code ('2840'). Defaults to the US.
Example Response

What does the Google Finance Quote API return?

Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.

Example response
{
  "success": true,
  "platform": "finance",
  "endpoint": "/v1/finance/quote",
  "data": {
    "quote": {
      "id": "GOOGL:NASDAQ",
      "ticker": "GOOGL",
      "exchange": "NASDAQ",
      "name": "Alphabet Inc Class A",
      "type": "stock",
      "url": "https://google.com/finance/quote/GOOGL:NASDAQ?hl=en&gl=us",
      "currency": "USD",
      "pair": null,
      "price": {
        "current": 325.5275,
        "previous_close": 319.74,
        "delta": 5.787506,
        "percentage_delta": 1.8100663,
        "trend": "up",
        "day_low": 325.04,
        "day_high": 330.42,
        "year_low": 187.82,
        "year_high": 408.61,
        "timestamp": "2026-07-27 14:38:10 +00:00"
      },
      "metrics": {
        "market_cap": 3987958948461.914,
        "volume": 7772211,
        "avg_volume": 34444190,
        "pe_ratio": 16.352312,
        "dividend_yield": 0.2703616,
        "ytd_return": null,
        "expense_ratio": null,
        "net_assets": null,
        "yield": null,
        "open_interest": null,
        "category": null,
        "metrics_currency": "USD"
      },
      "about": {
        "description": "Alphabet Inc. is an American multinational technology conglomerate holding company headquartered in Mountain View, California. It was created through a restructuring of Google on October 2, 2015, and became the parent holding company of Google and several former Google subsidiaries. Alphabet is listed on the large-cap section of the Nasdaq under the ticker symbols GOOGL and GOOG; both classes of stock are components of major stock market indices such as the S&P 500 and Nasdaq-100. Alphabet has been described as a Big Tech company. As of July 2026, it is the third largest publicly traded company in the world by market capitalization.\nThe establishment of Alphabet Inc. was prompted by a desire to make the core Google business \"cleaner and more accountable\" while allowing greater autonomy to group companies that operate in businesses other than Internet services. Founders Larry Page and Sergey Brin announced their resignation from their executive posts in December 2019, with the CEO role to be filled by Sundar Pichai, who is also the CEO of Google. Page and Brin remain employees, board members, and controlling shareholders of Alphabet Inc.",
        "description_source_url": "https://en.wikipedia.org/wiki/Alphabet_Inc.",
        "ceo": "Sundar Pichai",
        "founded": "2015-10-02 00:00:00 +00:00",
        "headquarters": "Mountain View, California, United States, US, 1600 Amphitheatre Parkway",
        "website": "https://abc.xyz/",
        "employees": 198933
      },
      "graph": [
        {
          "timestamp": "2026-07-27 13:30:00 +00:00",
          "value": 325.28,
          "volume": 15102
        },
        {
          "timestamp": "2026-07-27 13:31:00 +00:00",
          "value": 325.78,
          "volume": 6662
        }
      ],
      "financials": {
        "quarterly": [
          {
            "type": "google_finance_financial_element",
            "timestamp": "2026-06-01 00:00:00 +00:00",
            "revenue": 119796000000,
            "revenue_delta": 24.23362508814867,
            "operating_expense": 33083000000,
            "operating_expense_delta": 26.667432422084385,
            "net_income": 112193000000,
            "net_income_delta": 297.90395800822813,
            "net_profit_margin": 93.65,
            "net_profit_margin_delta": 220.280437756498,
            "earnings_per_share": 9.11,
            "earnings_per_share_delta": 294.37229437229433,
            "ebitda": 48241000000,
            "ebitda_delta": 32.555711263155004,
            "effective_tax_rate": 19.14,
            "cash_and_short_term_investments": 242474000000,
            "cash_and_short_term_investments_delta": 154.8387774834994,
            "total_assets": 921983000000,
            "total_assets_delta": 83.64256363371994,
            "total_liabilities": 281503000000,
            "total_liabilities_delta": 102.32073424035303,
            "total_equity": 640480000000,
            "shares_outstanding": 12230000000,
            "price_to_book": 6.281728880157171,
            "return_on_assets": 12.54,
            "return_on_capital": 15.26,
            "cash_from_operations": 39069000000,
            "cash_from_operations_delta": 40.80441128770678,
            "cash_from_investing": -82433000000,
            "cash_from_investing_delta": -235.8580508474576,
            "cash_from_financing": 61243000000,
            "cash_from_financing_delta": 1150.1200274348423,
            "net_change_in_cash": 17848000000,
            "net_change_in_cash_delta": 901.0771992818673,
            "free_cash_flow": -6523500000,
            "free_cash_flow_delta": -415.7936351057521
          },
          {
            "type": "google_finance_financial_element",
            "timestamp": "2026-03-01 00:00:00 +00:00",
            "revenue": 109896000000,
            "revenue_delta": 21.790012633818737,
            "operating_expense": 28929000000,
            "operating_expense_delta": 24.334894915545625,
            "net_income": 62578000000,
            "net_income_delta": 81.1754487550666,
            "net_profit_margin": 56.94,
            "net_profit_margin_delta": 48.74608150470218,
            "earnings_per_share": 5.11,
            "earnings_per_share_delta": 81.85053380782918,
            "ebitda": 46356000000,
            "ebitda_delta": 31.6370864688343,
            "effective_tax_rate": 19.16,
            "cash_and_short_term_investments": 126840000000,
            "cash_and_short_term_investments_delta": 33.056394763343405,
            "total_assets": 703919000000,
            "total_assets_delta": 48.0768826229453,
            "total_liabilities": 225173000000,
            "total_liabilities_delta": 73.06755209173987,
            "total_equity": 478746000000,
            "shares_outstanding": 12116000000,
            "price_to_book": 8.092634776006076,
            "return_on_assets": 15.28,
            "return_on_capital": 18.78,
            "cash_from_operations": 45790000000,
            "cash_from_operations_delta": 26.666666666666668,
            "cash_from_investing": -63389000000,
            "cash_from_investing_delta": -291.4350994195381,
            "cash_from_financing": 25077000000,
            "cash_from_financing_delta": 224.13741893965647,
            "net_change_in_cash": 7355000000,
            "net_change_in_cash_delta": 3741.089108910891,
            "free_cash_flow": 5678875000,
            "free_cash_flow_delta": -64.16096052507021
          }
        ],
        "annual": [
          {
            "type": "google_finance_financial_element",
            "timestamp": "2025-12-01 00:00:00 +00:00",
            "revenue": 402836000000,
            "revenue_delta": 15.090081081544376,
            "operating_expense": 111262000000,
            "operating_expense_delta": 21.83482621931189,
            "net_income": 132170000000,
            "net_income_delta": 32.01422321660441,
            "net_profit_margin": 32.81,
            "net_profit_margin_delta": 14.720279720279722,
            "earnings_per_share": 10.81,
            "earnings_per_share_delta": 34.45273631840798,
            "ebitda": 150175000000,
            "ebitda_delta": 17.598922482987604,
            "effective_tax_rate": 16.78,
            "cash_and_short_term_investments": 126843000000,
            "cash_and_short_term_investments_delta": 32.60190054047273,
            "total_assets": 595281000000,
            "total_assets_delta": 32.209454177179204,
            "total_liabilities": 180016000000,
            "total_liabilities_delta": 43.814910682900326,
            "total_equity": 415265000000,
            "shares_outstanding": 12097000000,
            "price_to_book": 9.308296943231442,
            "return_on_assets": 15.43,
            "return_on_capital": 19.25,
            "cash_from_operations": 164713000000,
            "cash_from_operations_delta": 31.455957350018753,
            "cash_from_investing": -120291000000,
            "cash_from_investing_delta": -164.1668130709768,
            "cash_from_financing": -37388000000,
            "cash_from_financing_delta": 53.10849961747331,
            "net_change_in_cash": 7242000000,
            "net_change_in_cash_delta": 1344.3298969072166,
            "free_cash_flow": 38088375000,
            "free_cash_flow_delta": -28.349080340304656
          },
          {
            "type": "google_finance_financial_element",
            "timestamp": "2024-12-01 00:00:00 +00:00",
            "revenue": 350018000000,
            "revenue_delta": 13.866243322901552,
            "operating_expense": 91322000000,
            "operating_expense_delta": 1.7299958783098843,
            "net_income": 100118000000,
            "net_income_delta": 35.67043837658378,
            "net_profit_margin": 28.6,
            "net_profit_margin_delta": 19.11703456892961,
            "earnings_per_share": 8.04,
            "earnings_per_share_delta": 38.6206896551724,
            "ebitda": 127701000000,
            "ebitda_delta": 32.69152838246449,
            "effective_tax_rate": 16.44,
            "cash_and_short_term_investments": 95657000000,
            "cash_and_short_term_investments_delta": -13.757257744599515,
            "total_assets": 450256000000,
            "total_assets_delta": 11.894868685262132,
            "total_liabilities": 125172000000,
            "total_liabilities_delta": 5.175064908875501,
            "total_equity": 325084000000,
            "shares_outstanding": 12190000000,
            "price_to_book": 12.011269722013523,
            "return_on_assets": 16.48,
            "return_on_capital": 21.01,
            "cash_from_operations": 125299000000,
            "cash_from_operations_delta": 23.148821575295344,
            "cash_from_investing": -45536000000,
            "cash_from_investing_delta": -68.25924694231978,
            "cash_from_financing": -79733000000,
            "cash_from_financing_delta": -10.597422773362185,
            "net_change_in_cash": -582000000,
            "net_change_in_cash_delta": -126.8326417704011,
            "free_cash_flow": 53158250000,
            "free_cash_flow_delta": -5.546190117649149
          }
        ]
      },
      "peers": [
        {
          "id": "GOOG:NASDAQ",
          "ticker": "GOOG",
          "exchange": "NASDAQ",
          "name": "Alphabet Inc Class C",
          "type": "stock",
          "url": "https://www.google.com/finance/beta/quote/GOOGL:NASDAQ?hl=en&gl=us&window=1d&comparison=NASDAQ%3AGOOG",
          "currency": "USD",
          "pair": null,
          "price": {
            "current": 325.24,
            "previous_close": null,
            "delta": 6.149994,
            "percentage_delta": 1.927354,
            "trend": "up",
            "day_low": null,
            "day_high": null,
            "year_low": null,
            "year_high": null,
            "timestamp": "2026-07-27 14:37:55 +00:00"
          },
          "metrics": null
        },
        {
          "id": "AMZN:NASDAQ",
          "ticker": "AMZN",
          "exchange": "NASDAQ",
          "name": "Amazon.com Inc",
          "type": "stock",
          "url": "https://www.google.com/finance/beta/quote/GOOGL:NASDAQ?hl=en&gl=us&window=1d&comparison=NASDAQ%3AAMZN",
          "currency": "USD",
          "pair": null,
          "price": {
            "current": 234.06,
            "previous_close": null,
            "delta": 1.949997,
            "percentage_delta": 0.8401176,
            "trend": "up",
            "day_low": null,
            "day_high": null,
            "year_low": null,
            "year_high": null,
            "timestamp": "2026-07-27 14:38:05 +00:00"
          },
          "metrics": null
        }
      ]
    }
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false
}

Live sample illustrating the unified response shape. Field values reflect the record you query.

API Details

How does the Google Finance Quote API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for Google Finance Quote data?

We handle the complexity of Google Finance data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.

One schema, every platform

Query 65 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.

See your data before you code

Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 65 platforms

Ready to scrape Google Finance Quote data?

Get your API key and start pulling Google Finance data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown