GnistAI GnistAI
Log in

VIN Lookup

VIN (Vehicle Identification Number) decoder — manufacturer, country, vehicle type, model year.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Automotive

Data source: NHTSA WMI database

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/vin-lookup/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-vin-lookup": {
      "url": "https://context.gnist.ai/mcp/vin-lookup/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/vin-lookup/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "decode_vin", "arguments": {"vin": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/vin-lookup/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/vin-lookup/decode_vin?vin=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/vin-lookup/decode_vin",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "vin": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc vin-lookup

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

decode_vin
Decode a VIN to identify manufacturer, country, vehicle type, and model year.
ParameterTypeRequiredDescription
vinstringrequired17-character Vehicle Identification Number.
list_vin_manufacturers
List all manufacturers in the VIN/WMI database.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related