# 🚗 Vehicle Recalls - NHTSA Safety & Complaint Data (`benthepythondev/vehicle-recalls-intelligence`) Actor

Access comprehensive vehicle safety data from NHTSA. Search recalls by make/model/year, decode VINs, find consumer complaints, and get campaign details. Essential for dealerships, mechanics, fleet managers, insurance companies, and automotive researchers.

- **URL**: https://apify.com/benthepythondev/vehicle-recalls-intelligence.md
- **Developed by:** [Ben](https://apify.com/benthepythondev) (community)
- **Categories:** Automation, Developer tools, Other
- **Stats:** 8 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

## NHTSA Vehicle Recalls Intelligence

**Extract vehicle safety recalls, complaints, and defect data from NHTSA. Search by make, model, year, VIN, or campaign number. Essential for automotive dealers, fleet managers, and consumers.**

### What you get

- **16 structured fields per record** — `campaign_number`, `component`, `consequence`, `make`, `manufacturer`, `model`, `model_year`, `nhtsa_action_number`…
- **Clean, validated JSON** ready for your pipeline
- **Pre-built dataset Overview** in the Apify Console for instant inspection
- **Reliable & maintained** — patched whenever the source changes

### Why this actor (vs. alternatives)

| | Build your own | Generic scraper | **This actor** |
|---|---|---|---|
| Maintenance | You patch every change | Often broken | Patched continuously |
| Structured output | Manual parsing | Inconsistent | Validated schema |
| Setup time | Days | Hours | Minutes |
| Pay only for results | N/A | Varies | Yes (pay-per-use) |

### Input

| Field | Type | Description |
|---|---|---|
| `mode` **(required)** | `string` | Type of data to retrieve Options: `recalls`, `complaints`, `by_vin`, `by_campaign`, `list_makes` |
| `makes` | `array` | List of vehicle makes (e.g., Honda, Toyota, Ford) |
| `models` | `array` | List of vehicle models corresponding to makes (e.g., Civic, Camry, F-150) |
| `modelYear` | `integer` | Filter by specific model year (e.g., 2024) |
| `vins` | `array` | Vehicle Identification Numbers to look up (17 characters each) |
| `campaignNumbers` | `array` | NHTSA recall campaign numbers (e.g., 23V704000) |
| `maxResults` | `integer` | Maximum number of records to return |

### Example Input

```json
{
  "mode": "recalls",
  "makes": [
    "Ford"
  ],
  "models": [
    "F-150"
  ],
  "modelYear": 2023,
  "maxResults": 100
}
```

### Output (sample)

```json
{
  "campaign_number": "23V070000",
  "manufacturer": "Ford Motor Company",
  "make": "FORD",
  "model": "F-150",
  "model_year": "2023",
  "report_received_date": "10/02/2023",
  "component": "POWER TRAIN:AUTOMATIC TRANSMISSION",
  "summary": "Ford Motor Company (Ford) is recalling certain 2022-2023 F-150, Mustang, Expl...",
  "consequence": "The inability to secure the vehicle in the park position can result in a roll...",
  "remedy": "Dealers will inspect and, if necessary, replace the transmissions, free of ch...",
  "notes": "Owners may also contact the National Highway Traffic Safety Administration Ve...",
  "park_it": false,
  "park_outside": false,
  "over_the_air_update": false,
  "nhtsa_action_number": null,
  "scraped_at": "2026-05-28T18:19:08.182998+00:00"
}
```

### Use cases

- **Compliance / risk** — monitor regulations, recalls, and filings
- **News / media** — auto-update on official government actions
- **Legal-tech** — track rules affecting your clients
- **Research / policy** — analyze government data at scale
- **Alerting** — notify stakeholders of relevant changes

### Pricing

**Pay-Per-Event:**

- $0.0015 per result
- $0.00005 actor-start fee

#### Example runs

| Use case | Results | Cost |
|---|---|---|
| Quick scan | 100 | **$0.15** |
| Standard run | 500 | **$0.75** |
| Bulk dataset | 2,000 | **$3.00** |

### FAQ

**Q: How fresh is the data?**\
A: Real-time — every run fetches live from the source.

**Q: Do I pay for failed or empty runs?**\
A: You pay per result returned, plus a tiny actor-start fee.

**Q: Can I schedule recurring runs?**\
A: Yes — use the Apify Console scheduler for daily/weekly automation.

**Q: Can I export the data?**\
A: Yes — JSON, CSV, Excel, and API access are all supported by Apify.

### Related actors

- **[federal-register-intelligence](https://apify.com/benthepythondev/federal-register-intelligence)** — US federal regulations
- **[fda-recall-intelligence](https://apify.com/benthepythondev/fda-recall-intelligence)** — FDA recalls
- **[fbi-wanted-intelligence](https://apify.com/benthepythondev/fbi-wanted-intelligence)** — FBI most-wanted data
- **[sec-edgar-filings-intelligence](https://apify.com/benthepythondev/sec-edgar-filings-intelligence)** — SEC EDGAR filings

### Legal & compliance

This actor retrieves publicly accessible data only. You are responsible for respecting the source's Terms of Service, honoring robots.txt, and complying with GDPR / applicable regulations for any personal data.

### Support & feature requests

Open an issue on the Actor page or contact via Apify Console messaging. Custom features welcome.

# Actor input Schema

## `mode` (type: `string`):

Type of data to retrieve

## `makes` (type: `array`):

List of vehicle makes (e.g., Honda, Toyota, Ford)

## `models` (type: `array`):

List of vehicle models corresponding to makes (e.g., Civic, Camry, F-150)

## `modelYear` (type: `integer`):

Filter by specific model year (e.g., 2024)

## `vins` (type: `array`):

Vehicle Identification Numbers to look up (17 characters each)

## `campaignNumbers` (type: `array`):

NHTSA recall campaign numbers (e.g., 23V704000)

## `maxResults` (type: `integer`):

Maximum number of records to return

## Actor input object example

```json
{
  "mode": "recalls",
  "makes": [
    "Ford"
  ],
  "models": [
    "F-150"
  ],
  "modelYear": 2023,
  "maxResults": 100
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("benthepythondev/vehicle-recalls-intelligence").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("benthepythondev/vehicle-recalls-intelligence").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call benthepythondev/vehicle-recalls-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=benthepythondev/vehicle-recalls-intelligence",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/MX9bMxZ7Elrrb5A9H/builds/y2vdSQupTG6iqYzeb/openapi.json
