# Suverse Vehicle Recalls Lookup

> Suverse Vehicle Recalls Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-16).

Returns NHTSA safety recall campaigns for a given vehicle make, model, and year, including component, summary, consequence, and remedy details.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-vehicle-recalls
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-vehicle-recalls-lookup-348bca9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Agmqogg7AAXxaNyinr_k5

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 suverse-vehicle-recalls-lookup-348bca9b -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need structured NHTSA recall data for a specific vehicle without managing your own NHTSA API integration. It is ideal for AI agents performing safety checks, insurance due diligence, or resale validation workflows where per-call pricing is acceptable and no API key management is desired.

## Known failure modes

- No recalls found for the given make/model/year — returns empty result set
- Invalid or misspelled make/model causes no matching results from NHTSA
- NHTSA upstream API unavailable — returns gateway or timeout error
- Payment not processed — returns 402 Payment Required
- Malformed request body missing required fields — returns 400 Bad Request

## How this service works

Safety recalls for a make, model, and year from the NHTSA recalls API, no key. Returns each recall campaign with component, summary, consequence, and remedy. For AI agents in safety, insurance, and resale due diligence.

## Output

A list of recall campaign objects for the specified vehicle, each containing the campaign ID, affected component, a summary of the defect, the potential consequence of the defect, and the recommended remedy or corrective action.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-vehicle-recalls-lookup-348bca9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
