# NYSCR Construction Bid Scraper

**Use case:** 

Scrape New York State Contract Reporter construction bids, due dates, agencies, categories, and CR numbers for proposal teams.

## Input

```json
{
  "keywords": [
    "construction"
  ],
  "dateFilter": "LastWeek",
  "maxItems": 100,
  "startUrls": [
    {
      "url": "https://www.nyscr.ny.gov/Ads/Search?DateFilter=LastWeek&Status=Open&Top=50&Sort=-DateIssued"
    }
  ],
  "status": "Open",
  "sort": "-DateIssued"
}
```

## Output

```json
{
  "crNumber": {
    "label": "CR number"
  },
  "title": {
    "label": "Title"
  },
  "agency": {
    "label": "Agency"
  },
  "division": {
    "label": "Division"
  },
  "issueDate": {
    "label": "Issue date"
  },
  "dueDate": {
    "label": "Due date"
  },
  "location": {
    "label": "Location"
  },
  "category": {
    "label": "Category"
  },
  "adType": {
    "label": "Ad type"
  },
  "note": {
    "label": "Note"
  },
  "status": {
    "label": "Status"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [New York State Contract Reporter Scraper](https://apify.com/automation-lab/new-york-state-contract-reporter-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/new-york-state-contract-reporter-scraper) to learn more, explore other use cases, and run it yourself.