ブエノスアイレス — 交通違反
エンドポイント
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は空配列になり得ます。