# NHTSA Recall Detail Lookup

> NHTSA Recall Detail Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns stored detail for a single NHTSA vehicle recall campaign by entityId (e.g. 'nhtsa:24V771000').

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/nhtsa-recalls/status
- 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/nhtsa-recall-detail-lookup-8329acc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6B2OjwVTxJ6rgacDo3mFH

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 nhtsa-recall-detail-lookup-8329acc0
```

Example prompt: Can you pull up the full details for NHTSA recall nhtsa:24V771000 — I want to know what vehicles are affected and what the defect is.

## When to prefer this

Use this endpoint when you have a specific NHTSA recall entityId (e.g. 'nhtsa:24V771000') and need full structured details about that recall campaign. Prefer this over broad recall search endpoints when the recall ID is already known. Best suited for agents monitoring automotive safety, verifying recall status for a specific vehicle, or enriching recall data pipelines.

## Known failure modes

- Unknown or invalid entityId returns empty or null entity object
- Omitting the 'id' query parameter may return a list of tracked entities rather than a single recall
- Malformed entityId format (not matching 'nhtsa:XXXXXXX' pattern) may yield no results
- Payment failure (x402) if USDC not available
- Recall campaign not yet ingested into the oracle's store returns no data

## How this service works

Stored detail for a single recall campaign (entityId like 'nhtsa:24V771000').

## Output

Returns a stored entity object containing detailed information about a single NHTSA vehicle recall campaign, including the recall ID, affected vehicles, defect description, remedy, and other campaign metadata.

## 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",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nhtsa-recall-detail-lookup-8329acc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
