Skip to main content

RUNT — 車両(基本登録)

エンドポイント

GET https://api.verifik.co/v2/co/runt/vehiculo

ナンバーと名義人の documentType / documentNumberRUNT の車両情報を取得します。/v2/co/runt/vehicle-by-plate より軽い用途向けです。必要に応じ audit クエリ(文字列の真偽)を使用できます。

ヘッダー

名前
Acceptapplication/json
AuthorizationBearer <token>

パラメーター

名前必須説明
documentTypestringはい名義人の証明書種別。CCCEPANIT のいずれか。
documentNumberstringはい証番号(スペース・句点なし)。
platestringはい照会するナンバー(API 検証上 5〜9 文字)。サーバーは大文字に正規化します。

リクエスト

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehiculo", {
params: {
documentType: "CC",
documentNumber: "123456789",
plate: "ABC123",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

レスポンス

{
"data": {
"documentNumber": "31527228",
"documentType": "CC",
"plate": "WHH662",
"vehicle": {
"marca": "MAZDA",
"linea": "T 45",
"modelo": "1999",
"noPlaca": "WHH662",
"estadoDelVehiculo": "ACTIVO",
"tipoServicio": "Público",
"organismoTransito": "STRIA DE TTOyTTE MEDELLIN"
}
},
"signature": {
"dateTime": "October 10, 2025 8:10 PM",
"message": "Certified by Verifik.co"
},
"id": "GVMFW"
}

注記

  • 包括的な履歴は GET /v2/co/runt/vehicle-by-plate を参照してください。
  • 簡易版は GET /v2/co/runt/vehicle-by-plate-simplified です。