Scrapingdog

Google Finance API

The Google Finance API lets you retrieve financial market data including stock prices, price movements, market news, and related financial instruments across multiple markets and asset classes.

Endpoint: https://api.scrapingdog.com/google_finance

API Parameters

🔑

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard.
🔗

Request Parameters

  • query Required
    The stock you want to search for (e.g., NIFTY_50:INDEXNSE)

    Type: String
  • language Optional
    Language of the results. Possible Values - en, es, fr, de, etc. Default: en

    Type: String
  • html Optional
    To render the response as raw HTML. Default: false

    Type: Boolean

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_finance?api_key=APIKEY&query=NIFTY_50:INDEXNSE"
API Response
{
  "summary": {
    "title": "NIFTY 50",
    "stock": "NIFTY_50",
    "exchange": "INDEXNSE",
    "price": "18,665.50",
    "price_movement": {
      "percentage": -1.21,
      "value": -105.75,
      "movement": "Down"
    }
  },
  "market": {
    "US": [
      {
        "stock": ".DJI:INDEXDJX",
        "name": "Dow Jones",
        "price": "33,727.43",
        "price_movement": {
          "percentage": "-0.65%",
          "value": "-219.28",
          "movement": "down"
        }
      }
    ]
  }
}