🇦🇷 Argentine — RTO
Point d'accès
GET https://api.verifik.co/v2/ar/rto
Utilisez ce point d'accès pour consulter les enregistrements d'inspection RTO argentine par plaque. La réponse inclut le résultat, le type d'inspection, les dates d'inspection et d'expiration, le certificat, la catégorie d'évolutivité, le centre d'inspection et le type d'alerte.
En-têtes
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Paramètres
| Nom | Type | Requis | Description |
|---|---|---|---|
plate | string | Yes | Format Mercosur AA-123-BB (envoyez AA123BB, sans espaces ni ponctuation). |
Requête
- JavaScript
- Python
import axios from 'axios';
const { data } = await axios.get('https://api.verifik.co/v2/ar/rto', {
params: { plate: 'AA123BB' },
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": "AA123BB"}
response = requests.get(url, headers=headers, params=params)
print(response.json())
Réponse
- 200
- 404
- 409
- 500
{
"data": {
"plate": "AA123BB",
"totalRecords": "1",
"inspections": [
{
"plate": "AA123BB",
"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."
}
Champs de réponse
| Champ | Type | Description |
|---|---|---|
plate | string | Plaque normalisée. |
totalRecords | string | Nombre d'enregistrements RTO renvoyés. |
inspections | object[] | Enregistrements d'inspection RTO. |
inspections[].result | string | null | Résultat de l'inspection. |
inspections[].inspectionType | string | null | Libellé du type d'inspection. |
inspections[].inspectionDate | string | null | Date d'inspection. |
inspections[].expirationDate | string | null | Date d'expiration. |
inspections[].certificate | string | null | Identifiant du certificat. |
inspections[].scalabilityCategory | string | null | Catégorie d'évolutivité renvoyée par la source. |
inspections[].inspectionCenter | string | null | Nom du centre d'inspection. |
inspections[].alertType | string | null | Type d'alerte de la source lorsqu'il est disponible. |
Remarques
- Les champs de date sont normalisés lorsque la source renvoie une valeur jour/mois/année reconnaissable.
- Les enregistrements RTO sont renvoyés dans un tableau
inspectionspour gérer plusieurs enregistrements par plaque.