🇧🇷 ブラジル — 車両情報
車両情報照会
エンドポイント
GET https://api.verifik.co/v2/br/vehicle
ブラジルのナンバープレートを指定すると、Verifik は1回のリクエストで構造化された車両データを返し、実物の資産を検証済みの正規化された属性に紐づけられます。フリート・モビリティのオンボーディング、保険の見積もり・事故対応、担保付き融資・担保審査、ナンバーが主な識別子となるマーケットプレイスやディーラーでの確認などを想定しています。
Verifik API はそのナンバーに対する正規化された車両レコードを返します。ナンバー、メーカー、モデル、モデル年式と製造年、シャーシ(VIN)、エンジン、色、ボディタイプ、燃料種別、トランスミッション、ドア数、製造元または工場、該当する場合は FIPE コード、登記に不備や制限の指標がある場合はその指標などを含みます。処理を続ける前に、目の前の車両が公式のラインと一致するか確認するために使用します。
ヘッダー
| 名前 | 値 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
パラメーター
| 名前 | 型 | 必須 | 説明 |
|---|---|---|---|
plate | string | はい | 照会するナンバープレート(英数字。大文字・小文字は正規化されます)。例: ABC1D23。 |
リクエスト
- JavaScript
- Python
- PHP
- Swift
import axios from "axios";
const options = {
method: "GET",
url: "https://api.verifik.co/v2/br/vehicle",
params: { plate: "ABC1D23" },
headers: {
Accept: "application/json",
Authorization: "Bearer <your_token>",
},
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
headers = {
"Accept": "application/json",
"Authorization": "Bearer <your_token>",
}
conn.request("GET", "/v2/br/vehicle?plate=ABC1D23", "", headers)
res = conn.getresponse()
print(res.read().decode("utf-8"))
<?php
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', 'https://api.verifik.co/v2/br/vehicle', [
'query' => ['plate' => 'ABC1D23'],
'headers' => [
'Accept' => 'application/json',
'Authorization' => 'Bearer <your_token>',
],
]);
echo $response->getBody();
var request = URLRequest(url: URL(string: "https://api.verifik.co/v2/br/vehicle?plate=ABC1D23")!)
request.httpMethod = "GET"
request.setValue("application/json", forHTTPHeaderField: "Accept")
request.setValue("Bearer <your_token>", forHTTPHeaderField: "Authorization")
let task = URLSession.shared.dataTask(with: request) { data, _, _ in
print(String(data: data ?? Data(), encoding: .utf8) ?? "")
}
task.resume()
レスポンス
- 200
- 404
- 409
- 500
{
"data": {
"bodyType": "Hatch",
"brand": "Example Brand",
"chassis": "9BWZZZ377VT004251",
"color": "PRATA",
"country": "Brasil",
"doors": "4",
"engine": "1.0",
"factory": "Example Plant",
"fuelType": "Flex",
"irregularitiesCount": "0",
"irregularityCode": "",
"manufacturer": "Example Manufacturer",
"model": "Example Model",
"modelYear": "2022",
"plate": "ABC1D23",
"transmission": "Manual",
"vehicle": "Automóvel",
"version": "1.0 Flex",
"yearOfManufacture": "2022"
},
"signature": {
"dateTime": "April 20, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}
{
"code": "InternalServerError",
"message": "Server error."
}
メモ
- クエリ文字列で 必須 なのは
plateのみです。 - 一部のアカウントでは ナンバープレート別の拡張データシート プロダクトが有効になります。その機能が有効なときは AppFeature カタログに記載の URL を使用してください。