Skip to main content

ブエノスアイレス — 交通違反

エンドポイント

GET https://api.verifik.co/v2/ar/buenos-aires/traffic-infractions

このエンドポイントでナンバープレートにブエノスアイレスの交通違反があるか確認します。レスポンスにはプレート、記録総数、事件番号・通告番号、ステータス、金額、発行機関、日付、違反詳細(記録がある場合)が含まれます。

ヘッダー

NameValue
Acceptapplication/json
AuthorizationBearer <token>

パラメーター

名前必須説明
platestringYesメルコスール形式 AA-123-BBAA123BB として送信。スペース・句読点なし)。

リクエスト

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);

レスポンス

{
"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"
}
}

レスポンスフィールド

フィールド説明
platestring正規化されたプレート。
totalRecordsstringソースから返された記録数。
infractionsobject[]プレートに関連する交通違反記録。
infractions[].caseNumberstring | null事件番号。
infractions[].actNumberstring | null通告番号。
infractions[].statusstring | null事件の公開ステータス。
infractions[].isExpiredboolean | null記録が期限切れかどうか。
infractions[].totalAmountstring | nullソースから返された合計金額。
infractions[].detailsobject[]違反条項と説明。

メモ

  • このエンドポイントはブエノスアイレスの交通違反記録に限定されます。
  • プレートに返された違反がない場合、infractions は空配列になり得ます。