부에노스아이레스 — 교통 위반
엔드포인트
GET https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions
이 엔드포인트로 번호판의 부에노스아이레스 교통 위반 여부를 확인합니다. 응답에는 번호판, 총 기록 수, 사건 및 조서 번호, 상태, 금액, 발행 기관, 날짜 및 위반 상세(기록이 있는 경우)가 포함됩니다.
헤더
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
매개변수
| 이름 | 유형 | 필수 | 설명 |
|---|---|---|---|
plate | string | Yes | 메르코수르 형식 AA-123-BB (AA123BB로 전송, 공백 및 구두점 없음). |
요청
- JavaScript
- Python
import axios from 'axios';
const { data } = await axios.get('https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions', {
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/buenos-aires/traffic-infractions"
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())
응답
- 200
- 404
- 409
- 500
{
"data": {
"plate": "AA123BB",
"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."
}
응답 필드
| 필드 | 유형 | 설명 |
|---|---|---|
plate | string | 정규화된 번호판. |
totalRecords | string | 소스에서 반환된 기록 수. |
infractions | object[] | 번호판과 연결된 교통 위반 기록. |
infractions[].caseNumber | string | null | 사건 번호. |
infractions[].actNumber | string | null | 조서 번호. |
infractions[].status | string | null | 사건의 공개 상태. |
infractions[].isExpired | boolean | null | 기록 만료 여부. |
infractions[].totalAmount | string | null | 소스에서 반환된 총 금액. |
infractions[].details | object[] | 위반 조항 및 설명. |
참고
- 이 엔드포인트는 부에노스아이레스 교통 위반 기록으로 제한됩니다.
- 번호판에 반환된 위반이 없으면
infractions는 빈 배열일 수 있습니다.