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β
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | License plate to query (no spaces). |
Requestβ
- JavaScript
- cURL
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);
}
curl -X GET "https://api.verifik.co/v2/es/vehicle?plate=5684CCD" \
-H "Accept: application/json" \
-H "Authorization: Bearer <your_token>"
Responseβ
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "plate format invalid."
}
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