# Read 2021 Ford F-150 owner complaints (NHTSA)

**Use case:** 

Pulls the 100 most recently filed owner complaints (ODI) NHTSA holds for the 2021 Ford F-150; NHTSA files regular cab, SuperCab and SuperCrew complaints together (the hybrid is separate). Rows give the ODI number, component, owner description, incident and filed dates, crash and fire flags, injury and death counts and partial VIN. For lemon-law attorneys, used-truck buyers and fleet managers.

## Input

```json
{
  "dataType": "complaints",
  "make": "Ford",
  "model": "F-150 SUPER CREW",
  "modelYears": [
    "2021"
  ],
  "campaignNumber": "23V769000",
  "maxResults": 100,
  "maxRunSeconds": 240
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "id": {
    "label": "Campaign / ODI #",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "modelYear": {
    "label": "Year",
    "format": "text"
  },
  "component": {
    "label": "Component",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "reportDate": {
    "label": "Recall reported",
    "format": "text"
  },
  "incidentDate": {
    "label": "Incident",
    "format": "text"
  },
  "crash": {
    "label": "Crash",
    "format": "boolean"
  },
  "fire": {
    "label": "Fire",
    "format": "boolean"
  },
  "injuries": {
    "label": "Injuries",
    "format": "number"
  },
  "deaths": {
    "label": "Deaths",
    "format": "number"
  },
  "doNotDrive": {
    "label": "Do not drive",
    "format": "boolean"
  },
  "url": {
    "label": "Recall page",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [NHTSA Recalls Scraper - Recalls & Complaints API](https://apify.com/maydit/us-vehicle-recalls-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maydit/us-vehicle-recalls-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maydit/us-vehicle-recalls-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
