Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Finding a VIN from VRM (UK)
16-06-2023, 12:51 PM,
Post: #1
Finding a VIN from VRM (UK)
Hey all,

Regularly get so much from this forum, so wanted to give back a bit. When I'm searching for potential car purchases, I often want the VIN to check options and find the history. Decided to go searching for open APIs on websites to find the info I need.

This is a guide on how to get the commands needed and a couple of ones I've found listed below. I found in general, government websites don't give you much, neither do parts websites. However, car selling websites seem a more successful option.

Found these by enabling the Chrome Developer Tools and observing the network data in the Network tab. Ensuring network log is being recorded (record button in upper right of the window), find a website that has a car reg lookup, such and motorway.com, and add your reg, then look through the network requests to see if any might contain some decent data.

In the screenshot attached, I used the Aston Martin press plate "AML 1", to find the VIN of the car it is currently registered to.
   

If you want, you can then export the command as cURL, which can be pasted into a Terminal window to get you the same result:
   

You can then import this into Postman as raw text so that you can more easily play with it, find out which parts of the request are not needed and translate into Python for example.

As a result of this, I have found these two end-points which you can use to lookup the VIN given a reg, just replace {VRM} with the vehicle registration you're looking for.

Using Motorway.com:
Code:
curl --location 'https://api.motorway.co.uk/platform/vrm-check' \

--header 'Content-Type: application/json' \
--data '{"user":{},"vrm":"{VRM}"}'

Using SellYourCarToJack.com:
Code:
curl --location 'https://crm.syc2j.com/api/vehicle-details' \

--header 'Content-Type: application/json' \
--data '{"VRM":"{VRM}"}'
Reputation: +1 - slackers [+1]
Quote this message in a reply
[+] 4 users say Thank You to JPToadstool for this post


Possibly Related Threads…
Thread Author Replies Views Last Post
XZBMW Finding ZUSB based on RealOEM? xMoses 11 949 10-10-2023, 12:17 PM
Last Post: xMoses
XZBMW Needing Help finding ZUSB that4chanhacker 13 933 26-09-2023, 13:53 PM
Last Post: bmchicago
  Help finding programmer for frm cas kombi ____ANGEL___ 14 1,813 06-06-2019, 18:28 PM
Last Post: ____ANGEL___
XZBMW Help finding VIN in f3x 6WA dump acolt 3 609 22-05-2019, 00:08 AM
Last Post: DayvG
XZBMW Finding BMW E-series E6x, E9x etc key programmer Siller 5 877 26-01-2019, 20:47 PM
Last Post: RocketSurgeon

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content