API Documentation
Access real-time vehicle data, technical specs, and history for European license plates. All endpoints require an API key passed via the X-API-Key header.
Base URL: https://plates.example.com
GET
/api/v1/vehicle
Search vehicle specifications by license plate and country code.
PARAMETERTYPEREQUIREDDESCRIPTION
platestringYesThe vehicle's license plate (e.g. "G243XP")
countrystringYesISO 3166-1 alpha-2 country code (e.g. "NL", "UK")
curl "https://plates.example.com/api/v1/vehicle?plate=G243XP&country=NL" \
-H "X-API-Key: YOUR_API_KEY"
RESPONSE
{
"success": true,
"data": {
"plate": "G243XP",
"country": "NL",
"make": "TESLA",
"model": "MODEL 3",
"year": 2019,
"color": "BLACK",
"engineSize": null,
"fuelType": "ELECTRIC"
}
}GET
/api/v1/valuation
Get estimated current market valuation for a vehicle.
Documentation coming soon...
GET
/api/v1/history
Retrieve previous ownership, import/export, and accident history.
Documentation coming soon...
GET
/api/v1/mot
Check latest technical inspection (MOT/APK/TÜV) status and history.
Documentation coming soon...
GET
/api/v1/taxes
Calculate current road tax, registration fees, and company car tax brackets.
Documentation coming soon...
GET
/api/v1/emissions
Get detailed CO2, NOx, and particulate matter emission values and Euro classifications.
Documentation coming soon...