๐จ๐ด ๋ณด๊ณ ํ โ ํ์ ์ด์ ์๏ผ๋ฒํธํ๏ผ
์๋ํฌ์ธํธโ
GET https://api.verifik.co/v2/co/bogota/taxi-drivers/plate
๋ณด๊ณ ํ ๋ฑ๋ก ํ์์ ์ด์ ์ ์ ๋ณด์ ์ดํ์นด๋ ๋ด์ฉ์ ๋ฐํํฉ๋๋ค. ์ฐจ๋ ๋ฒํธํ(plate) ์ URL ๋ง์ง๋ง ๊ฒฝ๋ก ์ธ๊ทธ๋จผํธ๋ก ์ ๋ฌํฉ๋๋ค๏ผ์: โฆ/plate/WMN482๏ผ. ์ฟผ๋ฆฌ ๋ฌธ์์ด์ด ์๋๋๋ค. 5โ6์์ด๋ฉฐ ๊ณต๋ฐฑ์ด๋ ๋ง์นจํ๋ฅผ ๋ฃ์ง ์์ต๋๋ค.
ํค๋(Headers)โ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
๋งค๊ฐ๋ณ์(Parameters)โ
| name | type | required | description |
|---|---|---|---|
plate | string | yes | /plate/ ๋ค์ ๊ฒฝ๋ก ์ธ๊ทธ๋จผํธ. 5โ6์. ๊ณต๋ฐฑยท๋ง์นจํ ์์. |
์์ฒญ(Request)โ
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/bogota/taxi-drivers/plate/WMN482", {
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/bogota/taxi-drivers/plate/WMN482"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
r = requests.get(url, headers=headers)
print(r.json())
์๋ต(Response)โ
- 200
- 404
- 409
{
"data": [
{
"arl": "ARP SURA (ANTES SURATEP)",
"bloodType": "O+",
"companyName": "TAX EXPRESS S.A. ",
"companyNit": "8001749098",
"controlCardNumber": "3018528",
"controlCardStatus": "0",
"driverDTO": {
"bloodGroup": null,
"foto": null,
"person": {
"address": null,
"birthDate": null,
"cellPhone": null,
"documentIssueDate": null,
"firstName": "REINEL",
"identificationNumber": "80873223",
"identificationType": null,
"identificationTypeDesc": null,
"lastName": "AMADO CRUZ"
},
"photoUri": null,
"rhFactor": null
},
"effectiveDate": "16-04-2026",
"eps": "SANITAS",
"fixedPhoneType": false,
"foto": "",
"issueDate": "24-03-2026",
"operationCardExpirationDate": "19-02-2027",
"operationCardNumber": "2148724",
"paymentMethodName": "PLATAFORMA TECNรLOGICA",
"plate": "LSZ913",
"qualityFactor": false,
"rtmExpirationDate": "18-04-2026",
"rtmNumber": "1",
"soatExpirationDate": "16-04-2026",
"soatNumber": "408004743304000",
"validityDate": "16-04-2026"
},
{
"arl": "POSITIVA COMPAรรA DE SEGUROS",
"bloodType": "O+",
"companyName": "TAX EXPRESS S.A. ",
"companyNit": "8001749098",
"controlCardNumber": "3002873",
"controlCardStatus": "0",
"driverDTO": {
"bloodGroup": null,
"foto": null,
"person": {
"address": null,
"birthDate": null,
"cellPhone": null,
"documentIssueDate": null,
"firstName": "ADINAEL",
"identificationNumber": "1232891942",
"identificationType": null,
"identificationTypeDesc": null,
"lastName": "SANCHEZ MELO"
},
"photoUri": null,
"rhFactor": null
},
"effectiveDate": "05-04-2026",
"eps": "SANITAS",
"fixedPhoneType": false,
"foto": "",
"issueDate": "06-03-2026",
"operationCardExpirationDate": "19-02-2027",
"operationCardNumber": "2148724",
"paymentMethodName": "PLATAFORMA TECNรLOGICA",
"plate": "LSZ913",
"qualityFactor": false,
"rtmExpirationDate": "18-04-2026",
"rtmNumber": "1",
"soatExpirationDate": "16-04-2026",
"soatNumber": "408004743304000",
"validityDate": "16-04-2026"
}
],
"signature": {
"dateTime": "March 25, 2026 12:09 PM",
"message": "Certified by Verifik.co"
},
"id": "WA9IB"
}
{
"code": "NotFound",
"message": "No_result_found_for_the_indicated_plate"
}
{
"code": "MissingParameter",
"message": "missing plate\n"
}