<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: driviumnet</title>
    <description>The latest articles on DEV Community by driviumnet (@driviumnet).</description>
    <link>https://dev.to/driviumnet</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3935211%2F2de3dc9b-561c-4735-81cc-8add92e24214.png</url>
      <title>DEV Community: driviumnet</title>
      <link>https://dev.to/driviumnet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/driviumnet"/>
    <language>en</language>
    <item>
      <title>How I Built a UK Vehicle History API: VIN Decoding, MOT Records &amp; Finance Checks</title>
      <dc:creator>driviumnet</dc:creator>
      <pubDate>Sat, 16 May 2026 17:18:41 +0000</pubDate>
      <link>https://dev.to/driviumnet/how-i-built-a-uk-vehicle-history-api-vin-decoding-mot-records-finance-checks-36k5</link>
      <guid>https://dev.to/driviumnet/how-i-built-a-uk-vehicle-history-api-vin-decoding-mot-records-finance-checks-36k5</guid>
      <description>&lt;p&gt;If you've ever needed to verify a used car's history programmatically — MOT records, &lt;br&gt;
finance checks, mileage history — you know how fragmented the data sources are. &lt;br&gt;
I built &lt;a href="https://drivium.net/en" rel="noopener noreferrer"&gt;Drivium&lt;/a&gt; to solve exactly this, and I want to share &lt;br&gt;
the technical decisions behind it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with vehicle data
&lt;/h2&gt;

&lt;p&gt;UK vehicle data lives across multiple official sources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DVSA&lt;/strong&gt; — MOT test history and mileage at each inspection&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DVLA&lt;/strong&gt; — Registration, technical specs, tax status&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HPI / finance registers&lt;/strong&gt; — Outstanding finance, stolen records&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Manufacturer databases&lt;/strong&gt; — Recall campaigns&lt;/li&gt;
&lt;/ul&gt;

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

&lt;h2&gt;
  
  
  What the API returns
&lt;/h2&gt;

&lt;p&gt;A single call to the Drivium API returns a unified JSON response:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
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.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>api</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
