# NHTSA Vehicle Consumer Complaints Lookup

> NHTSA Vehicle Consumer Complaints 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).

Fetches NHTSA consumer complaints for a US vehicle by make, model, and model year, returning top N records sorted newest-filed first with ODI number, component, summary, crash/fire flags, injury/death counts, and dates.

## Facts

- Endpoint: GET https://2s.io/api/vehicle/complaints
- 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-4cc9e0f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TrZER9EJNzN3XjEGbmG2-

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-4cc9e0f8
```

Example prompt: Pull the 10 most recent NHTSA consumer complaints for the 2019 Ford F-150 — I want to see if there are any crash or fire flags and how many injuries were reported.

## When to prefer this

Use this endpoint when an agent needs structured, government-sourced vehicle safety complaint data — particularly when researching used car safety history, investigating known issues with a specific make/model/year, or checking for crash/fire/injury patterns. Prefer over web scraping NHTSA directly because this returns pre-parsed, structured JSON with flags and counts ready for analysis. Best for automotive safety research, pre-purchase due diligence, and regulatory compliance checks.

## Known failure modes

- Unknown make/model/year combination returns empty results array
- Missing required query param (make, model, or modelYear) returns 400 validation error
- modelYear outside 1949–2099 range rejected with validation error
- limit outside 1–100 range rejected with validation error
- NHTSA upstream unavailable may return 502 or timeout
- Payment failure (x402) prevents access if USDC balance insufficient

## How this service works

NHTSA consumer complaints for a US vehicle by (make, model, modelYear). Returns the top N records (newest-filed first) with ODI number, affected component, plain-English summary, crash/fire flags, injury and death counts, partial VIN, and incident + filing dates. Backed by NHTSA's public complaints database; data is public-domain US government records.

## Output

An array of up to N complaint records (default 25, max 100), sorted newest-filed first. Each record includes: ODI number, affected vehicle component, plain-English complaint summary, boolean crash and fire flags, injury and death counts, partial VIN, and both the incident date and the NHTSA filing date. Data is sourced from NHTSA's public-domain complaints database.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "make": "Toyota",
   "limit": 10,
   "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\", \"Tesla\", \"Ford\"."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 100,
       "minimum": 1,
       "description": "Max records to return, newest-filed first (1-100). Default 25."
      },
      "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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-4cc9e0f8/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)
