# Find Honda Civic Suspension Parts for Specific Year

**Use case:** 

Extract a comprehensive list of suspension components available for a particular Honda Civic model year, including part numbers and pricing. This supports inven

## Input

```json
{
  "queries": [
    "shock absorber",
    "strut assembly",
    "control arm"
  ],
  "categoryFilter": "Suspension",
  "maxPrice": 300,
  "maxResults": 150,
  "enrichWithPartDetails": false,
  "vehicleMake": "Honda",
  "vehicleModel": "Civic",
  "vehicleYear": 2015,
  "startUrls": []
}
```

## Output

```json
{
  "manufacturer": {
    "label": "Brand",
    "format": "text"
  },
  "partNumber": {
    "label": "Part #",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "priceUSD": {
    "label": "Price",
    "format": "number"
  },
  "coreChargeUSD": {
    "label": "Core",
    "format": "number"
  },
  "totalUSD": {
    "label": "Total",
    "format": "number"
  },
  "packSize": {
    "label": "Pack",
    "format": "number"
  },
  "moreInfoUrl": {
    "label": "Info URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [RockAuto Parts Scraper](https://apify.com/crawlerbros/rockauto-parts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/rockauto-parts-scraper) to learn more, explore other use cases, and run it yourself.