# ClearCheck Vehicle Recall Lookup

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

Looks up active NHTSA recall campaigns for a vehicle by make, model, and year, including do-not-drive and park-outside flags, hazard details, and free remedy info.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/vehiclerecall
- Price: $0.02/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-recall-lookup-3b3a58b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KpM8oH7l19GnVZHxgfn24

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-recall-lookup-3b3a58b4
```

Example prompt: Can you check if my 2018 Honda Accord is under any active NHTSA recalls — specifically whether there's a do-not-drive or park-outside flag, and what the free remedy is if so?

## When to prefer this

Use this endpoint when you need authoritative NHTSA recall data for a specific passenger vehicle by make, model, and year — especially when do-not-drive urgency flags or free remedy availability matter. Prefer this over generic web searches when you need structured, machine-readable recall records with per-campaign detail. It is not suitable for commercial trucks (use the motor carrier endpoint) or for recalls outside the US NHTSA system.

## Known failure modes

- Unknown make/model/year combination returns zero recalls (not an error, but may mean no NHTSA data exists)
- NHTSA upstream API unavailable — returns a service error
- Missing required query parameters (make, model, modelYear) — returns validation error
- Misspelled make or model may return empty results rather than an error
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

Is this car under recall? NHTSA campaigns with the do-not-drive and park-outside flags, hazard and free remedy.

## Output

Returns a structured verdict for the queried vehicle including total recall count, per-campaign details (campaign number, affected component, hazard consequence, free remedy description, do-not-drive boolean, park-outside boolean, over-the-air fix flag, manufacturer, report date), aggregate do-not-drive and park-outside counts, a plain-language verdict, data source attribution, retrieval timestamp, and a disclaimer.

## 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": "Max recalls to return, default 10"
      },
      "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"
       }
      },
      "recalls": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "remedy": {
          "type": "string"
         },
         "summary": {
          "type": "string"
         },
         "component": {
          "type": "string"
         },
         "doNotDrive": {
          "type": "boolean"
         },
         "consequence": {
          "type": "string"
         },
         "parkOutside": {
          "type": "boolean"
         },
         "manufacturer": {
          "type": "string"
         },
         "campaignNumber": {
          "type": "string"
         },
         "reportReceived": {
          "type": "string"
         },
         "fixedByOverTheAirUpdate": {
          "type": "boolean"
         }
        }
       }
      },
      "vehicle": {
       "type": "object",
       "properties": {
        "make": {
         "type": "string"
        },
        "model": {
         "type": "string"
        },
        "modelYear": {
         "type": "integer"
        }
       }
      },
      "verdict": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "reca
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-vehicle-recall-lookup-3b3a58b4/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)
