# Honda Civic Complaint Extractor

**Use case:** 

Extract Honda Civic NHTSA safety complaints with crash, fire, injury, component, VIN, and summary fields.

## Input

```json
{
  "vehicles": [
    {
      "make": "Honda",
      "model": "Civic",
      "modelYear": 2020
    }
  ],
  "maxComplaintsPerVehicle": 100,
  "maxItems": 100,
  "sortBy": "dateIncidentDesc",
  "includeProducts": true
}
```

## Output

```json
{
  "queryMake": {
    "label": "Query make"
  },
  "queryModel": {
    "label": "Query model"
  },
  "queryModelYear": {
    "label": "Query model year"
  },
  "odiNumber": {
    "label": "ODI number"
  },
  "manufacturer": {
    "label": "Manufacturer"
  },
  "crash": {
    "label": "Crash"
  },
  "fire": {
    "label": "Fire"
  },
  "numberOfInjuries": {
    "label": "Injuries"
  },
  "numberOfDeaths": {
    "label": "Deaths"
  },
  "dateOfIncident": {
    "label": "Incident date"
  },
  "dateComplaintFiled": {
    "label": "Complaint filed date"
  },
  "vin": {
    "label": "VIN"
  },
  "components": {
    "label": "Components"
  },
  "componentText": {
    "label": "Component text"
  },
  "summary": {
    "label": "Complaint summary"
  },
  "products": {
    "label": "Products"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [NHTSA Vehicle Complaints Scraper](https://apify.com/automation-lab/nhtsa-vehicle-complaints-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/nhtsa-vehicle-complaints-scraper) to learn more, explore other use cases, and run it yourself.