# Recalls, crash ratings and complaints for 3 cars

**Use case:** 

Looks up three vehicles at NHTSA and returns every recall campaign — number, date, component, summary, consequence, remedy and the park-it and over-the-air flags — plus NCAP crash-test stars and up to 100 owner complaints each, with crash, fire, injury and death counts. Matching is by year, make and model, not VIN range. $0.70 per 1,000 recalls and ratings, $0.15 per 1,000 complaints.

## Input

```json
{
  "sources": [
    "nhtsa"
  ],
  "keywords": [],
  "vehicles": [
    "2020 Honda Civic",
    "2021 Ford F-150",
    "2022 Toyota RAV4"
  ],
  "maxRecords": 100,
  "includeRatings": true,
  "vins": [],
  "recallIds": [],
  "manufacturers": [],
  "hazardKeywords": [],
  "remedyKeywords": [],
  "states": [],
  "classifications": [],
  "dateFrom": "",
  "dateTo": "",
  "includeComplaints": true,
  "maxComplaintsPerVehicle": 100,
  "decodeOnly": false,
  "fdaSearch": "",
  "fsisServerSideFilter": true,
  "includeSummary": true,
  "vinModelYear": "",
  "includeRawVin": false,
  "maxRatingVariantsPerVehicle": 5,
  "includeCampaignDetail": true,
  "maxCampaignLookups": 25,
  "crashOnly": false,
  "fireOnly": false,
  "resolveAmbiguous": "diagnostic",
  "cpscSearchFields": [
    "RecallTitle",
    "ProductName",
    "RecallDescription"
  ],
  "maxCpscRequests": 12,
  "maxVehicles": 25,
  "maxVins": 500,
  "incremental": false,
  "stateStoreName": "product-recalls-api-state",
  "maxConcurrency": 4,
  "maxRunSecs": 240,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "vehicleModelYear": {
    "label": "Vehicle model year",
    "format": "string"
  },
  "vehicleMake": {
    "label": "Vehicle make",
    "format": "string"
  },
  "vehicleModel": {
    "label": "Vehicle model",
    "format": "string"
  },
  "campaignNumber": {
    "label": "Campaign number",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "component": {
    "label": "Component",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "consequence": {
    "label": "Consequence",
    "format": "string"
  },
  "remedy": {
    "label": "Remedy",
    "format": "string"
  },
  "parkIt": {
    "label": "Park it",
    "format": "boolean"
  },
  "parkOutSide": {
    "label": "Park outside",
    "format": "boolean"
  },
  "overTheAirUpdate": {
    "label": "Over-the-air update",
    "format": "boolean"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Product & Vehicle Recalls API — CPSC, NHTSA, FDA, USDA](https://apify.com/insight.solutions/product-recalls-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/insight.solutions/product-recalls-api.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/insight.solutions/product-recalls-api.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
