# Datamancer Full VIN Decode (Premium)

> Datamancer Full VIN Decode (Premium) is a paid API for AI agents from agents.datamancer.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Decodes a Vehicle Identification Number (VIN) into a comprehensive vehicle data card including make, model, year, trim, engine, and more

## Facts

- Endpoint: GET https://agents.datamancer.io/api/v1/paid/vin
- 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/datamancer-full-vin-decode-premium-675e409a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1cH_sLym9uVKV8SqLEyV-

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 datamancer-full-vin-decode-premium-675e409a
```

Example prompt: Can you decode the VIN 1HGCM82633A004352 and give me the full vehicle details — make, model, year, trim, engine, and anything else available?

## When to prefer this

Choose this endpoint when you need a comprehensive, premium-grade VIN decode with full vehicle specification details rather than a basic free decoder. Ideal for automotive applications, insurance quoting, fleet management, fraud detection, or any use case requiring authoritative and complete vehicle data from a single VIN lookup.

## Known failure modes

- Invalid or malformed VIN (not 17 characters or contains invalid characters) returns an error
- VIN not found in database returns empty or not-found response
- Payment failure via x402 protocol prevents access to the endpoint
- Network timeout or service unavailability

## How this service works

VIN decode (x402; 402 first, $0.005, Base then Solana)

## Output

A premium vehicle data card containing decoded fields from the VIN such as make, model, model year, trim, engine type and displacement, body style, drivetrain configuration, country and plant of manufacture, vehicle type, and NHTSA or manufacturer metadata.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "vin"
     ],
     "properties": {
      "vin": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tier": "paid",
  "source": "nhtsa_vpic",
  "product": "vin_decode",
  "vehicle": {
   "id": "vin:US:1HGCM82633A004352",
   "vin": "1HGCM82633A004352",
   "make": "HONDA",
   "model": "Accord",
   "body_class": "Coupe",
   "model_year": "2003",
   "object_type": "vehicle"
  },
  "jurisdiction": "US"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datamancer-full-vin-decode-premium-675e409a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.datamancer.io](https://www.zero.xyz/host/agents.datamancer.io/llms.txt)
