๐จ๐ฑ ์น ๋ โ ๋๋ ์ฐจ๋
์น ๋ ์ฐจ๋์ ํ์ฑ ๋๋ยท์ ๋ ์ ๊ณ (encargo por robo o hurto)๊ฐ ์๋์ง ์กฐํํฉ๋๋ค.
์กฐํ๊ฐ ์ฑ๊ณตํ๋ฉด ์๋ช ๋ ํ์ด๋ก๋๋ฅผ ๋ฐํํฉ๋๋ค.
plateโ ์น ๋ ๋ฒํธํ(Patente), 4โ7์ ์์ซ์hasTheftReportโ ํ์ฑ ์ ๊ณ ๊ฐ ์์ผ๋ฉดtrue, ์๋๋ฉดfalsedescriptionโ ์ํ ํ ์คํธ(์:NO REGISTRA ENCARGO Vigentes)theftReportโ ์ ๊ณ ๊ฐ์ฒด:typeCode,plateOriginal,plateFormatted,reportDate,partiallyResolved,itemsitems[]โ ๋๋ ๋ถํ:name,description,serial,resolvedDate,delivered,deliveryDate,type- Verifik ์๋ช ์๋ต
์น ๋ ์ฐจ๋์ ๋ฑ๋กํ๊ฑฐ๋ ๊ธ์ตํ๊ธฐ ์ ๋ณดํ ์ธ์, ํ๋ฆฟ ์จ๋ณด๋ฉ, ์ค์ฌ์ ์ฌ์ฉํฉ๋๋ค.
์๋ํฌ์ธํธโ
GET v2/cl/vehicle-stolen
์ผ๋ฐ ํ๋: plate, hasTheftReport, description, ์ค์ฒฉ theftReport. ํ์ฑ ์ ๊ณ ๊ฐ ์์ด๋ HTTP 200์ ๋ฐํํฉ๋๋ค.
ํค๋โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
๋งค๊ฐ๋ณ์โ
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Yes | ์น ๋ ๋ฒํธํ(Patente), 4โ7์ ์์ซ์. | PTKX93 |
์์ฒญโ
- Node.js
- Python
const { data } = await axios.get("https://api.verifik.co/v2/cl/vehicle-stolen", {
params: { plate: "PTKX93" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
url = "https://api.verifik.co/v2/cl/vehicle-stolen"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"plate": "PTKX93"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
์๋ตโ
- 200 ํ์ฑ ์ ๊ณ ์์
- 200 ๋๋ ์ ๊ณ
- 409
{
"data": {
"description": "NO REGISTRA ENCARGO Vigentes",
"hasTheftReport": false,
"plate": "PTKX93",
"theftReport": {
"typeCode": 0,
"plateOriginal": "PTKX93",
"plateFormatted": null,
"reportDate": "",
"partiallyResolved": false,
"items": []
}
},
"signature": {
"dateTime": "September 3, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"data": {
"description": "REGISTRA ENCARGO Vigentes",
"hasTheftReport": true,
"plate": "NG8245",
"theftReport": {
"typeCode": 1,
"plateOriginal": "NG8245",
"plateFormatted": "NGโ82ยท45",
"reportDate": "22-07-2026 11:40:45",
"partiallyResolved": false,
"items": [
{
"name": null,
"description": "Patente Delantera",
"serial": "NG.8245",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 1
},
{
"name": null,
"description": "VIN",
"serial": "KMHVF21NPSU188119",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 3
},
{
"name": null,
"description": "MOTOR",
"serial": "G4EKS443358",
"resolvedDate": null,
"delivered": "No",
"deliveryDate": null,
"type": 4
}
]
}
},
"signature": {
"dateTime": "September 3, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
์ฐธ๊ณ โ
- ํ์ฑ ๋๋ ์ ๊ณ ์์์ **
hasTheftReport: false**์ ํจ๊ป HTTP 200์ ๋ฐํํฉ๋๋ค. 404๊ฐ ์๋๋๋ค. - ์๋๋ฐ์ค ๋ชจ๋: ๋ฒํธํ **
PTKX93**์ ์ ๊ณ ์์ ํ๋กํ, **NG8245**๋ ๋๋ ์ ๊ณ ํ๋กํ์ ๋ฐํํฉ๋๋ค. - ์๋ชป๋ ๋ฒํธํ ํ์์ 409
invalid_plate_format์ ๋ฐํํฉ๋๋ค. - ๋ ์ง์คํธ๋ฆฌ ๊ฐ์ฉ์ฑ์ ํ๊ฒฝ์ ๋ฐ๋ผ ๋ค๋ฅด๋ฉฐ, ์ฅ์ ์ 409 ํ์์์์ด ๋ฐ์ํ ์ ์์ต๋๋ค.