ブエノスアイレス — 技術検査
エンドポイント
GET https://api.verifik.co/v2/ar/buenos-aires/technical-inspection
このエンドポイントでナンバープレートからブエノスアイレスの車両技術検査履歴を照会します。レスポンスには検証ID、検証日・有効期限、結果タイプ、ステッカー番号、コメント、車両ブランド・モデル、検査場名が含まれます。
ヘッダー
| 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/technical-inspection', {
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/technical-inspection"
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",
"inspections": [
{
"verificationId": "10000001",
"verificationDate": "2026-01-15 10:30:00",
"resultTypeId": "2",
"comments": "Observada",
"stickerNumber": "OB-10000001",
"expirationDate": "2027-01-15",
"isReverification": false,
"brand": "TOYOTA",
"model": "COROLLA",
"plantName": "Planta VTV Buenos Aires"
}
]
},
"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 | 返された技術検査記録数。 |
inspections | object[] | 技術検査記録。 |
inspections[].verificationId | string | null | 検証識別子。 |
inspections[].verificationDate | string | null | 検査検証日。 |
inspections[].resultTypeId | string | null | ソースから返された結果タイプID。 |
inspections[].stickerNumber | string | null | 検査ステッカー番号。 |
inspections[].expirationDate | string | null | 検査有効期限。 |
inspections[].brand | string | null | 車両ブランド。 |
inspections[].model | string | null | 車両モデル。 |
inspections[].plantName | string | null | 検査場名。 |
メモ
- このエンドポイントはブエノスアイレスの技術検査記録に限定されます。
- ソースが認識可能な日/月/年値を返す場合、日付フィールドは正規化されます。