Skip to main content

🇪🇨 Ecuador - Vehicle Verification

This service returns vehicle information registered in Ecuador using the license plate (plate): make, model, year, type, and related registration-oriented fields (subject to source availability).

Endpoint​

GET https://api.verifik.co/v2/ec/vehiculo/placa

Query an Ecuadorian vehicle by plate (no spaces or periods). Use for verification, insurance, fleet, and compliance workflows.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
platestringYesLicense plate to query, without spaces or periods.PBB3239

Request​

import axios from 'axios';

const { data } = await axios.get('https://api.verifik.co/v2/ec/vehiculo/placa', {
params: { plate: 'PBB3239' },
headers: {
Accept: 'application/json',
Authorization: 'Bearer <token>',
},
});
console.log(data);

Response​

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