Skip to main content

Spain

API Reference​

Endpoint​

https://api.verifik.co/v2/es/vehicle

Returns vehicle information for a Spanish registration plate, including fields such as make, model, year, and vehicle type when a match exists.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
platestringYesLicense plate to query (no spaces).

Request​

import axios from "axios";

const options = {
method: "GET",
url: "https://api.verifik.co/v2/es/vehicle",
params: { plate: "5684CCD" },
headers: {
Accept: "application/json",
Authorization: "Bearer <your_token>",
},
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"plate": "5684CCD",
"brand": "MAKE",
"model": "MODEL",
"year": "2020",
"vehicleType": "SEDAN"
},
"signature": {
"dateTime": "April 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "VHCL1"
}

Use cases​

  • Insurance & underwriting: confirm vehicle attributes from plate
  • Marketplaces & logistics: validate fleet or listed vehicles
  • Compliance: support checks tied to registered vehicles in Spain