Skip to main content

フロリダ州運転免許の照会

フロリダ州で発行された運転免許の 状態、制限、裏書、指定 などを照会します。クエリ documentNumber に免許証番号を指定します。

エンドポイント

GET https://api.verifik.co/v2/usa/florida/driver-license

免許証番号をクエリ documentNumber で指定して照会します。

ヘッダー

名前
Content-Typeapplication/json
AuthorizationBearer <token>

パラメーター

名前必須説明
documentNumberstringはいフロリダ州の運転免許番号。B123-456-78-910-0

リクエスト

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/usa/florida/driver-license',
params: { documentNumber: 'B123-456-78-910-0'},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

レスポンス

{
"data": {
"designations": "None on Record",
"documentNumber": "B123-456-78-910-0",
"endorsements": "None on Record",
"restrictions": "None on Record",
"status": "As of February 26, 2024, at 12:11 AM, Florida driver license number B123-456-78-910-0 is Valid. This license is a Class E with an expiration date of 12/28/2026."
},
"signature": {
"dateTime": "March 12, 2024 8:15 PM",
"message": "Certified by Verifik.co"
},
"id": "XUXSL"
}