π¦π· μλ₯΄ν¨ν°λ β μ°¨λ v3
μλν¬μΈνΈβ
GET https://api.verifik.co/v3/ar/vehicle
μ΄ μλν¬μΈνΈλ₯Ό μ¬μ©νμ¬ λ²νΈνμΌλ‘ μλ₯΄ν¨ν°λ μ°¨λ μμΈ μ 보λ₯Ό μ‘°νν©λλ€. μλ΅μλ μμ§ λ²νΈ, μμ, λΈλλ, λͺ¨λΈ, μ°μ, μμ, μ°¨λ μ ν, νμ± λ³΄ν μν λ° κΈ°μ μνΈ νλ(κ°λ₯ν κ²½μ°)κ° ν¬ν¨λ©λλ€.
ν€λβ
| 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/v3/ar/vehicle', {
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/v3/ar/vehicle"
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": {
"brand": "TOYOTA",
"chassis": "AR10000001CH",
"color": "BLANCO",
"engineNumber": "AR10000001M",
"isActivePolicyFound": false,
"model": "COROLLA 2020",
"modelGroup": "COROLLA",
"plate": "AA123BB",
"technicalSheet": {
"engine": {
"engineDescription": "1.6L",
"fuel": "NAFTA",
"powerHp": "110"
},
"performance": {
"cityConsumption": "10 km/L",
"highwayConsumption": "14 km/L"
},
"dimensions": {
"doors": "4",
"occupants": "5"
}
},
"type": "AUTOMOVIL",
"year": "2020"
},
"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 | μ κ·νλ μ°¨λ λ²νΈν. |
engineNumber | string | null | μμ€μμ λ°νλ μμ§ λ²νΈ. |
chassis | string | null | μμ€μμ λ°νλ μμ μλ³μ. |
year | string | null | μ°¨λ μ°μ. |
brand | string | null | μ°¨λ λΈλλ. |
modelGroup | string | null | λͺ¨λΈκ΅°. |
model | string | null | λͺ¨λΈ/λ²μ λΌλ²¨. |
color | string | null | λ±λ‘ μμ. |
type | string | null | μ°¨λ μ ν. |
isActivePolicyFound | boolean | νμ± λ³΄νμ΄ λ°κ²¬λμλμ§ μ¬λΆ. |
technicalSheet | object | null | κ°λ₯ν κ²½μ° κΈ°μ μνΈ λ°μ΄ν°. |
μ°Έκ³ β
- μΌμΉνλ κΈ°μ λ°μ΄ν°κ° μμΌλ©΄
technicalSheetλnullμ΄κ±°λ λΆλΆμ μΌλ‘ μ±μμ§ μ μμ΅λλ€. - μλΉμ€λ μμ€λ₯Ό μ‘°ννκΈ° μ μ λ²νΈν λμλ¬Έμλ₯Ό μ κ·νν©λλ€.