Buenos Aires Traffic Infractions
Endpoint
GET https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions
Use this endpoint to check whether a vehicle plate has traffic infractions in Buenos Aires. The response includes the plate, total record count, case and act numbers, status, amounts, issuing authority, dates, and infraction details when records are found.
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/traffic-infractions', {
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/traffic-infractions"
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",
"infractions": [
{
"caseNumber": "BA-10000001",
"actNumber": "ACT-10000001",
"status": "Pendiente",
"isExpired": false,
"totalAmount": "10012501",
"details": [
{
"article": "Ley 24.449",
"description": "Exceso de velocidad"
}
],
"issuingAuthority": "Buenos Aires",
"infractionDate": "2026-01-15T12:00:00.000Z",
"issueDate": "2026-01-16T12:00:00.000Z",
"dueDate": "2026-02-15T12:00:00.000Z"
}
]
},
"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 records returned by the source. |
infractions | object[] | Traffic infraction records associated with the plate. |
infractions[].caseNumber | string | null | Case number. |
infractions[].actNumber | string | null | Act number. |
infractions[].status | string | null | Public status of the case. |
infractions[].isExpired | boolean | null | Whether the record is expired. |
infractions[].totalAmount | string | null | Total amount returned by the source. |
infractions[].details | object[] | Articles and descriptions for the infraction. |
Notes
- This endpoint is scoped to Buenos Aires traffic infraction records.
infractionscan be an empty array when the plate has no returned infractions.