# NHTSA Vehicle Recalls LLM Brief

> NHTSA Vehicle Recalls LLM Brief is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated digest summarizing the most severe recent NHTSA vehicle recalls within a configurable time window.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/nhtsa-recalls/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nhtsa-vehicle-recalls-llm-brief-315f3c5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0vTUEbiZKQWHIZdF-0KNa

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-vehicle-recalls-llm-brief-315f3c5a
```

Example prompt: Give me an LLM-written digest of the most severe vehicle recalls reported since January 1, 2025.

## When to prefer this

Use this endpoint when you need a human-readable, LLM-synthesized narrative summary of vehicle recalls rather than raw recall data. Ideal for consumer-facing alerts, daily safety briefings, or monitoring workflows where a concise digest of the most severe issues is more useful than a list of structured records. Prefer this over raw NHTSA data fetchers when you want interpretation and severity ranking already applied.

## Known failure modes

- No recalls found in the specified time window — may return an empty or minimal brief
- Invalid 'since' date-time format — returns a validation error
- Payment not provided or insufficient — returns 402 Payment Required
- Service unavailable or NHTSA data source unreachable — returns 5xx error
- LLM generation failure — may fall back to template-based output (generatedBy: 'template')

## How this service works

An LLM-written digest of the most severe recent vehicle recalls.

## Output

Returns a JSON object containing a 'brief' field with an LLM-written narrative summary of the most severe recent vehicle recalls, a 'generatedBy' field indicating whether the text was produced by an LLM or a template, and a 'basedOnChanges' integer indicating how many recall events the digest is based on.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nhtsa-vehicle-recalls-llm-brief-315f3c5a/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)
