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
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
plate | string | Yes | Vehicle license plate to query, without spaces or punctuation. Example: ABC10001. |
Request
- JavaScript
- Python
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);
import os
import requests
url = "https://api.verifik.co/v2/ar/buenos-aires/technical-inspection"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "ABC10001"}
response = requests.get(url, headers=headers, params=params)
print(response.json())
Response
- 200
- 404
- 409
- 500
{
"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"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Response fields
| Field | Type | Description |
|---|---|---|
plate | string | Normalized vehicle plate. |
totalRecords | string | Number of technical inspection records returned. |
inspections | object[] | Technical inspection records. |
inspections[].verificationId | string | null | Verification identifier. |
inspections[].verificationDate | string | null | Inspection verification date. |
inspections[].resultTypeId | string | null | Result type identifier returned by the source. |
inspections[].stickerNumber | string | null | Inspection sticker number. |
inspections[].expirationDate | string | null | Inspection expiration date. |
inspections[].brand | string | null | Vehicle brand. |
inspections[].model | string | null | Vehicle model. |
inspections[].plantName | string | null | Inspection 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.