Official vehicle safety recall check by VIN or year/make/model: every open recall campaign
Official vehicle safety recall check by VIN or year/make/model: every open recall campaign with affected component, defect summary, safety consequence, remedy, report date, and do-not-drive / park-outside fire-risk flags. Pass a VIN and the vehicle is identified automatically. Zero recalls is a real answer. For pre-purchase checks, fleet compliance, and dealer agents.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated
Provider
x402.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x850363a27F0aC6fEb9C7a3eC4C1d295262dF9432",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"limit": 2,
"make": "honda",
"model": "accord",
"model_year": "2003"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"attribution": "US DOT vehicle safety recall campaigns (public domain)",
"matched": 24,
"recalls": [
{
"campaign_number": "19V182000",
"component": "AIR BAGS:FRONTAL:DRIVER SIDE:INFLATOR MODULE",
"park_it": false,
"park_outside": false,
"report_date": "06/03/2019",
"summary": "…recalling specific vehicles to replace the driver frontal air bag inflator…"
}
],
"returned": 2,
"vehicle": {
"make": "honda",
"model": "accord",
"model_year": "2003"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"limit": {
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"make": {
"description": "e.g. honda",
"type": "string"
},
"model": {
"description": "e.g. accord",
"type": "string"
},
"model_year": {
"description": "4-digit year",
"type": "string"
},
"vin": {
"description": "VIN — decoded automatically (alternative to make/model/model_year)",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"info": {
"required": false
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "5000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0x850363a27F0aC6fEb9C7a3eC4C1d295262dF9432",
"resourceUrl": "https://x402.forgemesh.io/vehicle-recalls",
"scheme": "exact",
"validUntil": 1788443249,
"version": 1
},
"signature": "0xed048a11d2d2ac6865adbc9a7c1ff2adee34bd022cb5b01566447d923cfb6ddc1d30ac937c9626cc8f8f0962dc95fcaf5c0c5606c38cb66cbc02eab8efdd54d51c"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}Use it
curl
curl "https://x402.forgemesh.io/vehicle-recalls" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.forgemesh.io/vehicle-recalls");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.forgemesh.io/vehicle-recalls")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14248.json, and this resource appears in /discovery/resources and /discovery/search.