# Google Finance European Stock Extractor

**Use case:** 

Extract a European stock quote, profile, valuation ratios, quarterly and annual financials, related securities, and news from Google Finance.

## Input

```json
{
  "symbols": [
    "AAPL:NASDAQ"
  ],
  "startUrls": [
    {
      "url": "https://www.google.com/finance/quote/BMW:ETR?hl=en"
    }
  ],
  "includeFinancials": true,
  "includeNews": true,
  "maxNewsItems": 10,
  "includeRelated": true,
  "maxRelatedSecurities": 10,
  "maxConcurrency": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "text"
  },
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceChangePercent": {
    "label": "Change %",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E ratio",
    "format": "number"
  },
  "eps": {
    "label": "EPS",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Google Finance",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Finance Scraper](https://apify.com/automation-lab/google-finance-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-finance-scraper) to learn more, explore other use cases, and run it yourself.