# NYC CAMIS Restaurant Inspection Monitor

**Use case:** 

Monitor a specific NYC restaurant by CAMIS ID and export inspection dates, grades, scores, and violation details.

## Input

```json
{
  "maxItems": 50,
  "borough": "Manhattan",
  "zipCodes": [
    "10002"
  ],
  "grades": [
    "A",
    "B",
    "C"
  ],
  "criticalOnly": false,
  "camisIds": [
    "40732665"
  ],
  "orderBy": "inspection_date_desc"
}
```

## Output

```json
{
  "camis": {
    "label": "CAMIS"
  },
  "dba": {
    "label": "Restaurant name"
  },
  "borough": {
    "label": "Borough"
  },
  "address": {
    "label": "Address"
  },
  "zipcode": {
    "label": "ZIP"
  },
  "phone": {
    "label": "Phone"
  },
  "cuisine": {
    "label": "Cuisine"
  },
  "inspectionDate": {
    "label": "Inspection date",
    "format": "date"
  },
  "inspectionType": {
    "label": "Inspection type"
  },
  "action": {
    "label": "Action"
  },
  "violationCode": {
    "label": "Violation code"
  },
  "violationDescription": {
    "label": "Violation description"
  },
  "criticalFlag": {
    "label": "Critical flag"
  },
  "score": {
    "label": "Score"
  },
  "grade": {
    "label": "Grade"
  },
  "gradeDate": {
    "label": "Grade date",
    "format": "date"
  },
  "recordDate": {
    "label": "Record date",
    "format": "date"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "sourceApiUrl": {
    "label": "Source API URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [NYC Restaurant Inspection Results Scraper](https://apify.com/automation-lab/nyc-restaurant-inspection-results-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/nyc-restaurant-inspection-results-scraper) to learn more, explore other use cases, and run it yourself.