# AutoPulse Vehicle Recall Lookup

> AutoPulse Vehicle Recall Lookup is a paid API for AI agents from autopulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns open NHTSA safety recalls for any vehicle by VIN or year/make/model, with supplemental international recall data from UK DVSA, Transport Canada, ACCC Australia, EU RAPEX, and Japan MLIT

## Facts

- Endpoint: GET https://autopulse.theaslangroupllc.com/api/auto/recall
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autopulse-vehicle-recall-lookup-728b3718
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EHGjDQGLTZXPH_URfsVgC

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 autopulse-vehicle-recall-lookup-728b3718
```

Example prompt: Check if there are any open safety recalls on a 2020 Ford F-150 — the VIN is 1FTFW1ET4LFA12345 — and include any international recall notices from the UK or Canada too.

## When to prefer this

Use this endpoint when an agent needs to verify vehicle safety recall status before a car purchase, ownership check, or insurance assessment — especially when VIN-level precision or international recall coverage is needed. Prefer over generic web search when structured, authoritative NHTSA data and multi-country recall context are required.

## Known failure modes

- VIN not found or invalid format returns empty recall list or error
- Year/make/model combination not recognized returns no results
- No open recalls found returns empty array (not an error)
- NHTSA API unavailable causes upstream timeout
- Malformed VIN (wrong length or characters) returns validation error

## How this service works

Vehicle recall lookup / VIN recall check / car safety recall search. Returns open NHTSA safety recalls for any car by VIN or year/make/model, plus international recall context (UK DVSA, Transport Canada, ACCC Australia, EU RAPEX, Japan MLIT). For car-buyer and auto agents.

## Output

A list of open NHTSA safety recall campaigns for the queried vehicle (by VIN or year/make/model), including recall IDs, affected components, descriptions of the safety defect, remedy/fix status, and supplemental international recall context from UK DVSA, Transport Canada, ACCC Australia, EU RAPEX, and Japan MLIT where applicable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vin": {
   "type": "string",
   "description": "17-character VIN"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "make": {
   "type": "string",
   "description": "make"
  },
  "year": {
   "type": "integer",
   "description": "year"
  },
  "model": {
   "type": "string",
   "description": "model"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autopulse-vehicle-recall-lookup-728b3718/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autopulse.theaslangroupllc.com](https://www.zero.xyz/host/autopulse.theaslangroupllc.com/llms.txt)
