Skip to main content

Argentina RTO

Endpoint

GET https://api.verifik.co/v2/ar/rto

Use this endpoint to check Argentine RTO inspection records by vehicle license plate. The response includes inspection result, inspection type, inspection and expiration dates, certificate, scalability category, inspection center, and alert type.

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/rto', {
params: { plate: 'ABC10001' },
headers: {
Accept: 'application/json',
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});

console.log(data);

Response

{
"data": {
"plate": "ABC10001",
"totalRecords": "1",
"inspections": [
{
"plate": "ABC10001",
"result": "CONDICIONAL",
"inspectionType": "RTO",
"inspectionDate": "2026-01-15",
"expirationDate": "2027-01-15",
"certificate": "RTO-10000001",
"scalabilityCategory": "L",
"inspectionCenter": "CENT UTN",
"alertType": "danger"
}
]
},
"signature": {
"dateTime": "July 1, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}

Response fields

FieldTypeDescription
platestringNormalized vehicle plate.
totalRecordsstringNumber of RTO records returned.
inspectionsobject[]RTO inspection records.
inspections[].resultstring | nullInspection result.
inspections[].inspectionTypestring | nullInspection type label.
inspections[].inspectionDatestring | nullInspection date.
inspections[].expirationDatestring | nullExpiration date.
inspections[].certificatestring | nullCertificate identifier.
inspections[].scalabilityCategorystring | nullScalability category returned by the source.
inspections[].inspectionCenterstring | nullInspection center name.
inspections[].alertTypestring | nullSource alert type when available.

Notes

  • Date fields are normalized where the source returns a recognizable day/month/year value.
  • RTO records are returned as an inspections array so consumers can handle multiple records for the same plate.