惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Last Week in AI
Last Week in AI
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
宝玉的分享
宝玉的分享
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 司徒正美
罗磊的独立博客
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
小众软件
小众软件
Jina AI
Jina AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a UK Vehicle History API: VIN Decoding, MOT R...
driviumnet · 2026-05-17 · via DEV Community

driviumnet

If you've ever needed to verify a used car's history programmatically — MOT records,
finance checks, mileage history — you know how fragmented the data sources are.
I built Drivium to solve exactly this, and I want to share
the technical decisions behind it.

The problem with vehicle data

UK vehicle data lives across multiple official sources:

  • DVSA — MOT test history and mileage at each inspection
  • DVLA — Registration, technical specs, tax status
  • HPI / finance registers — Outstanding finance, stolen records
  • Manufacturer databases — Recall campaigns

None of these talk to each other. A used car buyer (or a dealer's CRM) has to hit
4+ different sources to get a full picture.

What the API returns

A single call to the Drivium API returns a unified JSON response:


json
{
  "vin": "WVWZZZ1JZXW000001",
  "plate": "AB12 CDE",
  "mot_history": [
    {
      "test_date": "2023-04-12",
      "result": "PASS",
      "mileage": 43200,
      "expiry_date": "2024-04-11"
    }
  ],
  "finance": {
    "outstanding": false,
    "agreements": []
  },
  "stolen": false,
  "technical": {
    "make": "Volkswagen",
    "model": "Golf",
    "fuel_type": "Petrol",
    "engine_cc": 1390,
    "co2_gkm": 139,
    "euro_standard": "Euro 5"
  },
  "recalls": []
}

A legitimate car won't have a mileage decrease between tests. If you see one, 
the odometer has been tampered with.

## Integrating into a dealer CRM

For dealerships running bulk lookups, the API supports batch requests.

Plans start at 30 checks and scale to unlimited — the CSV export works 
well for import into dealer management systems.

## Clean air zone compliance

With ULEZ and CAZ zones expanding across UK cities, the CO2 and Euro 
standard fields are increasingly important for buyers. A vehicle rated 
Euro 4 or below will face daily charges in most clean air zones. 
The API returns this data directly from DVLA.

## Try it

You can run a free lookup or check the [[full API docs at drivium.net](https://drivium.net/en)].

Reports start at £0.99 for a one-off check. No account needed for single lookups.

Happy to answer questions in the comments — particularly around edge cases 
with cherished plates, SORN vehicles, or pre-2005 MOT records.

Enter fullscreen mode Exit fullscreen mode