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
| 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/rto', {
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/rto"
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": [
{
"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"
}
}
{
"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 RTO records returned. |
inspections | object[] | RTO inspection records. |
inspections[].result | string | null | Inspection result. |
inspections[].inspectionType | string | null | Inspection type label. |
inspections[].inspectionDate | string | null | Inspection date. |
inspections[].expirationDate | string | null | Expiration date. |
inspections[].certificate | string | null | Certificate identifier. |
inspections[].scalabilityCategory | string | null | Scalability category returned by the source. |
inspections[].inspectionCenter | string | null | Inspection center name. |
inspections[].alertType | string | null | Source 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
inspectionsarray so consumers can handle multiple records for the same plate.