# NHTSA Vehicle Safety Ratings

> NHTSA Vehicle Safety Ratings is a paid API for AI agents from fittings.sh, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns NCAP five-star crash safety ratings (overall, frontal, side, rollover) plus recall, complaint, and investigation counts for a given model year, make, and model.

## Facts

- Endpoint: GET https://fittings.sh/v1/nhtsa/safety-ratings
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nhtsa-vehicle-safety-ratings-4d4e565b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XXiIuCFYCP6hAPYM_FPIL

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 nhtsa-vehicle-safety-ratings-4d4e565b
```

Example prompt: What are the NHTSA five-star crash safety ratings for the 2022 Honda Accord — overall, frontal, side, and rollover — and how many recalls and complaints does it have?

## When to prefer this

Use this endpoint when you need authoritative US government NCAP crash safety ratings and recall/complaint data for a specific vehicle. Prefer this over generic car review APIs when official NHTSA star ratings are required, such as for compliance reporting, pre-purchase safety analysis, or fleet management decisions.

## Known failure modes

- Vehicle not found in NHTSA database for the given model year/make/model combination — returns empty or error response
- Misspelled make or model name results in no match
- Model year out of range of NHTSA data coverage
- API returns 402 if payment header is missing or invalid

## How this service works

NCAP five-star crash ratings for a model year, make and model: overall, frontal, side and rollover, with recall, complaint and investigation counts.

## Output

Returns the NCAP five-star crash safety ratings broken down by overall, frontal, side, and rollover categories for the specified vehicle, along with counts of recalls, consumer complaints, and active investigations on record with NHTSA.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "modelYear",
      "make",
      "model"
     ],
     "properties": {
      "make": {
       "type": "string",
       "description": "Make, e.g. Honda"
      },
      "model": {
       "type": "string",
       "description": "Model, e.g. Accord"
      },
      "modelYear": {
       "type": "number",
       "description": "Model year, e.g. 2015"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nhtsa-vehicle-safety-ratings-4d4e565b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
