Skip to main content

Buenos Aires Technical Inspection

Endpoint

GET https://api.verifik.co/v2/ar/buenos-aires/technical-inspection

Use this endpoint to check Buenos Aires vehicle technical inspection history by license plate. The response returns inspection records with verification identifiers, verification and expiration dates, result type, sticker number, comments, vehicle brand and model, and inspection plant name.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
platestringYesVehicle license plate to query, without spaces or punctuation. Example: ABC10001.

Request

import axios from 'axios';

const { data } = await axios.get('https://api.verifik.co/v2/ar/buenos-aires/technical-inspection', {
params: { plate: 'ABC10001' },
headers: {
Accept: 'application/json',
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});

console.log(data);

Response

{
"data": {
"plate": "ABC10001",
"totalRecords": "1",
"inspections": [
{
"verificationId": "10000001",
"verificationDate": "2026-01-15 10:30:00",
"resultTypeId": "2",
"comments": "Observada",
"stickerNumber": "OB-10000001",
"expirationDate": "2027-01-15",
"isReverification": false,
"brand": "TOYOTA",
"model": "COROLLA",
"plantName": "Planta VTV Buenos Aires"
}
]
},
"signature": {
"dateTime": "July 1, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}

Response fields

FieldTypeDescription
platestringNormalized vehicle plate.
totalRecordsstringNumber of technical inspection records returned.
inspectionsobject[]Technical inspection records.
inspections[].verificationIdstring | nullVerification identifier.
inspections[].verificationDatestring | nullInspection verification date.
inspections[].resultTypeIdstring | nullResult type identifier returned by the source.
inspections[].stickerNumberstring | nullInspection sticker number.
inspections[].expirationDatestring | nullInspection expiration date.
inspections[].brandstring | nullVehicle brand.
inspections[].modelstring | nullVehicle model.
inspections[].plantNamestring | nullInspection plant name.

Notes

  • This endpoint is scoped to Buenos Aires technical inspection records.
  • Date fields are normalized where the source returns a recognizable day/month/year value.