# ForgeMesh VIN Lookup

> ForgeMesh VIN Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Decodes a full or partial VIN into structured vehicle details including year, make, model, trim, engine, transmission, fuel type, body class, and assembly location.

## Facts

- Endpoint: POST https://x402.forgemesh.io/vin-lookup
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-vin-lookup-720fd58a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mXsphLUekdpPEOnCKj_Lm

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 forgemesh-vin-lookup-720fd58a -d '<json body>'
```

Example prompt: Can you look up VIN 1HGCM82633A123456 and tell me the year, make, model, trim, engine specs, and where it was built?

## When to prefer this

Choose this endpoint when you need authoritative, structured, zero-hallucination vehicle data from a VIN — especially in automotive agent workflows, pre-purchase verification, fleet management, or insurance applications. It supports both full 17-character VINs and partial VINs with wildcard characters, making it flexible for incomplete data scenarios. Prefer it over LLM-generated vehicle guesses whenever accuracy and structured JSON output with an explicit decode-status field are required.

## Known failure modes

- VIN shorter than 6 characters returns a validation error
- Invalid or unrecognized VIN returns a failed decode-status with no vehicle data
- Partial VIN without model_year hint may return ambiguous or incomplete results
- Malformed wildcard patterns may cause decode to fail or return unexpected matches
- Network or upstream NHTSA service unavailability returns a 5xx error

## How this service works

Look up any VIN and get the vehicle behind it: year, make, model, trim, body class, engine and transmission specs, fuel type, and where it was built. Registration-grade decode returned as structured JSON with an explicit decode-status field. Zero-hallucination source data for automotive agents.

## Output

A structured JSON object containing the decoded vehicle's year, make, model, trim level, body class, engine specification, transmission type, fuel type, country and plant of assembly, and an explicit decode-status field indicating whether the decode was full, partial, or failed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "vin": {
   "type": "string",
   "description": "the VIN — full 17 chars or partial with * wildcards (min 6 chars)"
  },
  "model_year": {
   "type": "string",
   "description": "optional 4-digit model year hint, improves partial-VIN decodes"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-vin-lookup-720fd58a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
