# Nasdaq US Stock Screener Scraper Example

**Use case:** 

Run a Nasdaq stock screener scraper across US exchanges and export current prices, volume, market cap, sectors, industries, and company data.

## Input

```json
{
  "exchange": "all",
  "maxRecords": 100
}
```

## 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.