# ClearCheck Vehicle Complaints Lookup

> ClearCheck Vehicle Complaints Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns NHTSA owner complaint data for a specific vehicle make/model/year, including complaint count, top failing components, crash/fire/injury totals, and sample complaint summaries.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/vehiclecomplaints
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-vehicle-complaints-lookup-c71cf620
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fj3AD-Gh-Vc1-ChdHkIN1

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 clearcheck-vehicle-complaints-lookup-c71cf620
```

Example prompt: Can you pull up the NHTSA owner complaint history for a 2019 Ford F-150 — I want to know the total complaint count, what parts are failing most, and whether any crashes or fires were reported?

## When to prefer this

Choose this endpoint when you need structured, aggregated NHTSA owner complaint data for a specific vehicle — especially when evaluating safety history before purchasing a used car, auditing a fleet vehicle, or investigating known failure patterns. It is better than raw NHTSA API access because it pre-aggregates component rankings, crash/fire/injury totals, and provides a verdict summary in one call.

## Known failure modes

- Unknown or misspelled make/model/year returns no results or an empty complaint list
- Very new model years may have no NHTSA data yet
- Rare or low-volume vehicles may have zero complaints on record
- API timeout if NHTSA upstream is slow
- Invalid modelYear format (non-integer) causes schema validation error

## How this service works

What do owners report failing on this car? NHTSA complaint counts, top components, and crash, fire and injury totals.

## Output

Returns a structured verdict object with the vehicle's total NHTSA complaint count, a ranked list of top failing components with complaint tallies, aggregate crash/fire/injury/death totals, a sample of individual complaint records (with ODI number, date, components, summary, crash/fire/injury flags), a verdict string, disclaimer, and timestamp of data retrieval.

## 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": [
      "make",
      "model",
      "modelYear"
     ],
     "properties": {
      "make": {
       "type": "string",
       "description": "Vehicle make, e.g. honda"
      },
      "limit": {
       "type": "integer",
       "description": "Sample complaints to return, default 5"
      },
      "model": {
       "type": "string",
       "description": "Vehicle model, e.g. accord"
      },
      "modelYear": {
       "type": "integer",
       "description": "Model year, e.g. 2018"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "vehicle": {
       "type": "object",
       "properties": {
        "make": {
         "type": "string"
        },
        "model": {
         "type": "string"
        },
        "modelYear": {
         "type": "integer"
        }
       }
      },
      "verdict": {
       "type": "string"
      },
      "complaints": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "fire": {
          "type": "boolean"
         },
         "crash": {
          "type": "boolean"
         },
         "deaths": {
          "type": "integer"
         },
         "filedOn": {
          "type": "string"
         },
         "summary": {
          "type": "string"
         },
         "injuries": {
          "type": "integer"
         },
         "odiNumber": {
          "type": "integer"
         },
         "components": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "incidentOn": {
          "type": "string"
         }
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "fireReports": {
       "type": "intege
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-vehicle-complaints-lookup-c71cf620/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
