# x402-factory Vehicle Recalls

> x402-factory Vehicle Recalls is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the latest vehicle recalls from FDA, USDA FSIS, and CPSC in a single normalized schema with severity classification and product details.

## Facts

- Endpoint: GET https://x402-factory.com/v1/recalls/vehicle
- 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/x402-factory-vehicle-recalls-a5eaa0e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z2psJ6nYHwYtbTTlFU3qA

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 x402-factory-vehicle-recalls-a5eaa0e7
```

Example prompt: Show me the latest vehicle recalls from the past 30 days, up to 10 results, and flag anything with Class I severity.

## When to prefer this

Choose this endpoint when you need vehicle-specific recalls pre-filtered from the broader multi-category recalls feed, saving you from client-side filtering. Prefer this over the general /v1/recalls endpoint when your use case is exclusively automotive/vehicle safety. Ideal for consumer safety apps, automotive platforms, fleet management tools, or compliance monitoring agents that only care about the vehicle category.

## Known failure modes

- No recalls match the given query or date filter — returns empty recalls array
- Invalid 'since' date format causes validation error
- 'limit' value out of range (must be 1–50) causes 400 error
- Payment of $0.01 USDC not received — 402 Payment Required response
- Service temporarily unavailable from upstream government data sources — 503 error

## How this service works

Latest vehicle recalls (FDA/USDA/CPSC normalized) — Latest vehicle recalls across FDA, USDA FSIS, and CPSC in one normalized schema, with severity classing and product details. Same shape as /v1/recalls, pre-filtered to the vehicle category.

## Output

Returns a JSON object containing an array of vehicle recall records, each with: agency (FDA/USDA/CPSC), product name, brand, hazard description, remedy, severity class (I/II/III), recall date, category (vehicle), and a URL to the official recall notice. Also includes a meta object with query context.

## 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",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "minLength": 2,
       "description": "Match against product, brand, or hazard"
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date",
       "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "recalls"
       ],
       "properties": {
        "recalls": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "agency",
           "category",
           "product",
           "hazard",
           "severity_class",
           "recall_date",
           "url"
          ],
          "properties": {
           "url": {
            "type": "string"
           },
           "brand": {
            "type": "string"
           },
           "agency": {
            "enum": [
             "FDA",
             "USDA",
             "CPSC"
            ],
            "type": "string"
           },
           "hazard": {
            "type": "string"
           },
           "remedy": {
            "type": "string"
           },
           "product": {
            "type": "string"
           },
           "category": {
            "enum": [
             "food",
             "drug",
             "device",
             "consumer",
             "vehicle"
            ],
            "type": "string"
           },
           "rec
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "recalls": []
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/gov.recalls.vehicle",
   "sources": [
    "openFDA",
    "FSIS",
    "CPSC"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/recalls/vehicle",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.079Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-vehicle-recalls-a5eaa0e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
