π¦π· μλ₯΄ν¨ν°λ β RTO
μλν¬μΈνΈβ
GET https://api.verifik.co/v2/ar/rto
μ΄ μλν¬μΈνΈλ‘ λ²νΈν κΈ°μ€ μλ₯΄ν¨ν°λ RTO κ²μ¬ κΈ°λ‘μ μ‘°νν©λλ€. μλ΅μλ κ²μ¬ κ²°κ³Ό, κ²μ¬ μ ν, κ²μ¬ λ° λ§λ£ λ μ§, μΈμ¦μ, νμ₯μ± μΉ΄ν κ³ λ¦¬, κ²μ¬ μΌν° λ° μλ¦Ό μ νμ΄ ν¬ν¨λ©λλ€.
ν€λβ
| 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/rto', {
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/rto"
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": [
{
"plate": "AA123BB",
"result": "CONDICIONAL",
"inspectionType": "RTO",
"inspectionDate": "2026-01-15",
"expirationDate": "2027-01-15",
"certificate": "RTO-10000001",
"scalabilityCategory": "L",
"inspectionCenter": "CENT UTN",
"alertType": "danger"
}
]
},
"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 | λ°νλ RTO κΈ°λ‘ μ. |
inspections | object[] | RTO κ²μ¬ κΈ°λ‘. |
inspections[].result | string | null | κ²μ¬ κ²°κ³Ό. |
inspections[].inspectionType | string | null | κ²μ¬ μ ν λΌλ²¨. |
inspections[].inspectionDate | string | null | κ²μ¬ λ μ§. |
inspections[].expirationDate | string | null | λ§λ£ λ μ§. |
inspections[].certificate | string | null | μΈμ¦μ μλ³μ. |
inspections[].scalabilityCategory | string | null | μμ€μμ λ°νλ νμ₯μ± μΉ΄ν κ³ λ¦¬. |
inspections[].inspectionCenter | string | null | κ²μ¬ μΌν° μ΄λ¦. |
inspections[].alertType | string | null | κ°λ₯ν κ²½μ° μμ€ μλ¦Ό μ ν. |
μ°Έκ³ β
- μμ€κ° μΈμ κ°λ₯ν μΌ/μ/λ κ°μ λ°ννλ©΄ λ μ§ νλκ° μ κ·νλ©λλ€.
- RTO κΈ°λ‘μ λμΌ λ²νΈνμ μ¬λ¬ κΈ°λ‘μ μ²λ¦¬νκΈ° μν΄
inspectionsλ°°μ΄λ‘ λ°νλ©λλ€.