# PennyRail VIN Decode – Vehicle Specs from VIN

> PennyRail VIN Decode – Vehicle Specs from VIN is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-16).

Decodes a Vehicle Identification Number (VIN) to return detailed vehicle specifications and attributes

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/micro/vehicle.vin-decode--vehicle-specs-from-vin
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pennyrail-vin-decode-vehicle-specs-from-vin-ff63a309
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5FYF1oMg5UV-aCfz8miL8

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 pennyrail-vin-decode-vehicle-specs-from-vin-ff63a309 -d '<json body>'
```

Example prompt: Can you decode the VIN 1HGCM82633A123456 and tell me the make, model, year, trim, and engine specs for that vehicle?

## When to prefer this

Use this endpoint when you need to programmatically decode a VIN into structured vehicle specifications at low cost ($0.004/call) via a pay-per-call x402 micropayment model. Prefer it for automotive workflows, fleet management, used car verification, or insurance quoting where you need VIN-to-specs lookups without a subscription.

## Known failure modes

- Invalid or malformed VIN returns an error or empty result
- VINs for very old or obscure vehicles may have incomplete data
- Network or service errors may return a 402 or 5xx response
- Missing or null input field causes validation failure

## How this service works

Machine-readable settlement service

## Output

Returns a structured object containing decoded vehicle specifications derived from the provided VIN, typically including make, model, year, trim, engine type, body style, drivetrain, and other vehicle attributes encoded in the VIN.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-vin-decode-vehicle-specs-from-vin-ff63a309/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
