# List 2024 Kia recalls model by model

**Use case:** 

Finds the 2024 Kia models NHTSA lists for recalls on its own (Telluride, Sportage, Sorento, EV6, EV9, Carnival, K5 and more) and returns each recall campaign per model: component, summary, consequence, remedy, report date and over-the-air or do-not-drive flags, with NHTSA links. A campaign covering several models appears once per model. For Kia dealers, fleet buyers and insurers.

## Input

```json
{
  "dataType": "recalls",
  "make": "Kia",
  "model": "Civic",
  "modelYears": [
    "2024"
  ],
  "campaignNumber": "23V769000",
  "maxResults": 200,
  "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`).
