부에노스아이레스 — 기술 검사
엔드포인트
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 | 검사소 이름. |
참고
- 이 엔드포인트는 부에노스아이레스 기술 검사 기록으로 제한됩니다.
- 소스가 인식 가능한 일/월/년 값을 반환하면 날짜 필드가 정규화됩니다.