# Finviz Technology Stock Screener Scraper

**Use case:** 

Scrape technology stocks from a filtered Finviz screener into structured company, valuation, price, change, and volume records.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://finviz.com/screener.ashx?v=111&f=sec_technology&o=-marketcap"
    }
  ],
  "maxItems": 100,
  "maxPagesPerUrl": 5
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "dailyChangePercent": {
    "label": "Daily change (%)",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "detailUrl": {
    "label": "Finviz stock",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source screen",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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