# NHTSA Vehicle Recall Lookup

> NHTSA Vehicle Recall Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.0024/call, status unknown (last checked 2026-09-14).

Returns all NHTSA recall campaigns (open and historical) for a US vehicle identified by make, model, and model year, including campaign numbers, affected components, and fire-risk advisories.

## Facts

- Endpoint: GET https://2s.io/api/vehicle/recalls
- Price: $0.0024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-b7b53217
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IjaUhfJvis0bILr7uR-dD

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-io-b7b53217
```

Example prompt: Can you pull up all the NHTSA recalls for a 2019 Honda Accord — I want to see any open campaigns, what components are affected, the remedies, and whether there are any fire-risk park-outside advisories?

## When to prefer this

Use this endpoint when you need official US government NHTSA recall data for a specific vehicle by make, model, and model year. Prefer this over general web searches when you need structured, authoritative recall campaign data including campaign numbers, component details, and fire-risk advisories — particularly for automotive safety checks, used-car due diligence, or fleet compliance workflows.

## Known failure modes

- No recalls found for the given make/model/year combination — returns empty list
- Invalid or unrecognized make/model string — may return empty results or error
- Model year out of supported range (before 1949 or after 2099) — validation error
- NHTSA upstream database unavailable — service may return 5xx error
- Misspelled make or model — NHTSA lookup may silently return no results

## How this service works

NHTSA recall campaigns for a US vehicle by (make, model, modelYear). Returns every open + historical campaign with the NHTSA campaign number, manufacturer, affected component, plain-English summary/consequence/remedy text, and the parkIt / parkOutside fire-risk advisories. Backed by NHTSA's public recalls database; data is public-domain US government records.

## Output

A list of every NHTSA recall campaign (open and historical) for the queried vehicle, each including: the NHTSA campaign number, manufacturer name, affected component(s), plain-English summary of the defect, consequence description, remedy instructions, and parkIt/parkOutside fire-risk advisories where applicable. Data sourced from NHTSA's public recalls database.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "make": "Toyota",
   "model": "Camry",
   "modelYear": 2020
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "make",
      "model",
      "modelYear"
     ],
     "properties": {
      "make": {
       "type": "string",
       "maxLength": 40,
       "minLength": 2,
       "description": "Vehicle make. Examples: \"Honda\", \"Toyota\", \"Tesla\". Case-insensitive on NHTSA side."
      },
      "model": {
       "type": "string",
       "maxLength": 40,
       "minLength": 1,
       "description": "Vehicle model. Examples: \"Accord\", \"Model 3\", \"F-150\"."
      },
      "modelYear": {
       "type": "integer",
       "maximum": 2099,
       "minimum": 1949,
       "description": "4-digit model year."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "ok",
   "items",
   "total",
   "source"
  ],
  "properties": {
   "ok": {
    "enum": [
     true
    ],
    "type": "boolean"
   },
   "meta": {
    "type": "object",
    "required": [
     "query"
    ],
    "properties": {
     "query": {
      "type": "object",
      "required": [
       "make",
       "model",
       "modelYear"
      ],
      "properties": {
       "make": {
        "type": "string"
       },
       "model": {
        "type": "string"
       },
       "modelYear": {
        "type": "integer"
       }
      },
      "additionalProperties": false
     }
    },
    "additionalProperties": false
   },
   "items": {
    "type": "array",
    "items": {
     "type": "object",
     "required": [
      "campaignNumber",
      "reportReceivedDate",
      "manufacturer",
      "component",
      "summary",
      "consequence",
      "remedy",
      "notes",
      "parkIt",
      "parkOutside",
      "overTheAirUpdate"
     ],
     "properties": {
      "notes": {
       "type": "string",
       "nullable": true
      },
      "parkIt": {
       "type": "boolean"
      },
      "remedy": {
       "type": "string",
       "nullable": true
      },
      "summary": {
       "type": "string",
       "nullable": true
      },
      "component": {
       "type": "string",
       "nullable": true
      },
      "consequence": {
       "type": "string",
       "nullable": true
      },
      "parkOutside": {
       "type": "boolean"
      },
      "manufacturer": {
       "type": "string",
       "nullable": true
      },
      "campaignNumber": {
       "type": "string"
      },
      "overTheAirUpdate": {
       "type": "boolean"
      },
      "reportReceivedDate": {
       "type": "string",
       "nullable": true
      }
     },
     "additionalProperties": false
    }
   },
   "total": {
    "type": "integer",
    "nullable": true,
    "description": "Total matching rows upstream; null when unknown."
   },
   "source": {
    "type": "object",
    "required": [
     "provider",
     "url",
     "license"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "license": {
      "type": "string"
     },
     "provider": {
      "type": "string"
     }
    },
    "additionalProperties": false
   }
  },
  "additionalProperties": false
 },
 "example": {
  "ok": true,
  "meta": {
   "query": {
    "make": "example",
    "model": "example",
    "modelYear": 1
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-b7b53217/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
