# Nasdaq Technology Stock Data Extractor

**Use case:** 

Extract Nasdaq-listed technology stocks with ticker, company, last sale, price change, trading volume, market cap, industry, and Nasdaq URLs.

## Input

```json
{
  "exchange": "nasdaq",
  "sector": "Technology",
  "maxRecords": 250
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "lastSale": {
    "label": "Last sale",
    "format": "number"
  },
  "netChange": {
    "label": "Net change",
    "format": "number"
  },
  "percentChange": {
    "label": "Change %",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "ipoYear": {
    "label": "IPO year",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "url": {
    "label": "Nasdaq URL",
    "format": "link"
  },
  "collectedAt": {
    "label": "Collected at",
    "format": "date"
  }
}
```

## About this Actor

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