# MCPFax Vehicle Diagnostics Recalls Lookup

> MCPFax Vehicle Diagnostics Recalls Lookup is a paid API for AI agents from mcpfax-diag.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Looks up NHTSA vehicle safety recalls by make, model, year, or VIN using the MCPFax vehicle diagnostics service

## Facts

- Endpoint: GET https://mcpfax-diag.bowling-anthony.workers.dev/recalls
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcpfax-vehicle-diagnostics-recalls-lookup-8e78456c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a7Ik8_PtwRkxrAmjsHgia

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 mcpfax-vehicle-diagnostics-recalls-lookup-8e78456c
```

Example prompt: Can you check if there are any open safety recalls on a 2019 Toyota Camry? I want to know what components are affected and what the remedy is.

## When to prefer this

Use this endpoint when you need to look up NHTSA vehicle safety recall data for a specific car by make, model, year, or VIN. Prefer this over general web search when you need structured recall records with remedy details rather than unstructured articles. Complement with the sibling VIN lookup, DTC, and TSB endpoints for comprehensive vehicle diagnostics coverage.

## Known failure modes

- No recalls found for the given vehicle — returns empty result set
- Invalid or unrecognized make/model/year combination — may return error or empty results
- Malformed request body — returns 400-level error
- Service unavailable or timeout — returns 5xx error
- Payment not processed — returns 402 payment required

## How this service works

Open safety recalls for a vehicle, by make/model/year or by campaign number, as published by the manufacturer's regulator.

## Output

Returns a list of safety recall records for the specified vehicle, including recall identifiers, affected components, descriptions of the safety issue, remedy information, and recall dates as reported by 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcpfax-vehicle-diagnostics-recalls-lookup-8e78456c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-diag.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-diag.bowling-anthony.workers.dev/llms.txt)
