🇪🇨 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​
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parameters​
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | License plate to query, without spaces or periods. | PBB3239 |
Request​
- JavaScript
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​
- 200
- 404
- 409
{
"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"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "plate format invalid."
}