Tutte le informazioni aggiornate su auto, moto, assicurazioni disponibili in tempo reale ed a livello globale.
Verifica qualsiasi targa ed ottieni info come data di immatricolazione, modello, caratteristiche ed assicurazione
Tutte le informazioni di cui hai bisogno
Qui trovi qualche consiglio da prendere in considerazione per approcciare a questa API. Se preferisci forniamo esempi di codice, documentazione in OAS3, la possibilità di provare l'API dal vivo con la Swagger UI oppure importare l'intera collezione in Postman. Offriamo inoltre un ambiente di Sandbox dove puoi sperimentare tutte le API gratuitamente.
Prendi il token nell'apposita sezione prima di cominciare.
Conosci la targa? Scegli la nazione ed il servizio!
- IT (Italia)
- UK (United Kingdom)
- FR (Francia)
- DE (Germany)
- "car" Ricerca per targa nel database delle autovetture
- "bike" Ricerca per targa nel database dei ciclomotori
- "insurance" Ricerca per targa nel database dei veicoli assicurati
/IT-bike
/UK-car
/UK-bike
/FR-car
/FR-bike
/DE-car
Eccezioni in IT, UK e DE
Per il Regno Unito è disponibile anche l'endpoint /UK-mot (Ministry of Transport) per verificare lo stato della revisione.
Per la Germania è disponibile un endpoint /DE-car che va interrogato con il numero KBA (Kraftfahrt-Bundesamt).
- Oas file url https://console.openapi.com/oas/it/automotive.openapi.json
- Fork or import with Postman
- Production domain automotive.openapi.com
- Sandbox domain test.automotive.openapi.com
-
Production Scopes 9
- GET automotive.openapi.com/IT-insurance
- GET automotive.openapi.com/IT-bike
- GET automotive.openapi.com/IT-car
- GET automotive.openapi.com/UK-mot
- GET automotive.openapi.com/UK-car
- GET automotive.openapi.com/UK-bike
- GET automotive.openapi.com/FR-car
- GET automotive.openapi.com/FR-bike
- GET automotive.openapi.com/DE-car
-
Sandbox Scopes 9
- GET test.automotive.openapi.com/IT-car
- GET test.automotive.openapi.com/IT-bike
- GET test.automotive.openapi.com/IT-insurance
- GET test.automotive.openapi.com/UK-mot
- GET test.automotive.openapi.com/UK-car
- GET test.automotive.openapi.com/UK-bike
- GET test.automotive.openapi.com/FR-car
- GET test.automotive.openapi.com/FR-bike
- GET test.automotive.openapi.com/DE-car
Automotive (1.0.0)
L'API fornisce un servizio di consultazione delle informazioni sui veicoli basato sui numeri di targa, con tre endpoint distinti per auto, moto e controlli assicurativi. Sviluppato a partire dall'endpoint "automotive", il servizio fornisce dettagli accurati e affidabili sui veicoli.
Il servizio IT Automotive per l'Italia fornisce una serie di endpoint API per informazioni complete sui veicoli, che coprono auto, moto e dettagli assicurativi.
Informazioni su un'auto
L'endpoint IT-car per l'Italia consente di recuperare dettagli completi su un veicolo immatricolato in Italia. Fornendo la targa, è possibile accedere a informazioni chiave come la marca, il modello, l'anno di immatricolazione e le specifiche tecniche dettagliate, offrendo una panoramica completa delle caratteristiche del veicolo. Questo servizio è stato progettato per facilitare una consultazione rapida e accurata delle informazioni relative al veicolo.
Authorizations:
path Parameters
LicensePlate required | string^[a-zA-Z]{2}[0-9]{3}[a-zA-Z]{2}$ Example: zr567zy Targa |
Responses
Response Schema: application/json
Array of objects (car) | |
success | boolean |
message | string |
error | integer |
Request samples
- C + Libcurl
- Csharp + Restsharp
- Go + Native
- Java + Okhttp
- Java + Unirest
- Javascript + Jquery
- Javascript + Xhr
- Node + Native
- Node + Request
- Node + Unirest
- Objc + Nsurlsession
- Ocaml + Cohttp
- Php + Curl
- Php + Http1
- Php + Http2
- Python + Python3
- Python + Requests
- Ruby + Native
- Shell + Curl
- Shell + Httpie
- Shell + Wget
- Swift + Nsurlsession
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://targa.openapi.it/IT-car/%7BLicensePlate%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
Response samples
- 200
- 402
- 406
- 417
- 428
- "data": {
- "LicensePlate": "EX117YA",
- "Description": "AUDI A4 4ª serie",
- "RegistrationYear": "2015",
- "CarMake": "AUDI",
- "CarModel": "A4 4ª serie",
- "EngineSize": "",
- "FuelType": "Diesel",
- "MakeDescription": "AUDI",
- "ModelDescription": "A4 4ª serie",
- "Immobiliser": "",
- "NumberOfDoors": "",
- "Version": "AUDI A4 2.0 TDI ultra 136CV ( 3/2014 )",
- "ABS": "",
- "AirBag": "",
- "Vin": "",
- "KType": "",
- "PowerCV": 136,
- "PowerKW": 100,
- "PowerFiscal": 20,
- "Timestamp": 1665411640
- "success": true,
- "message": "",
- "error": null
Informazioni su una moto
L'endpoint IT-bike per l'Italia consente di ottenere informazioni dettagliate su una moto immatricolata in Italia. Fornendo la targa, è possibile accedere a dettagli essenziali come la marca, il modello, l'anno di immatricolazione e le caratteristiche specifiche del motociclo. Questo servizio è pensato per offrire una panoramica completa delle caratteristiche del motociclo, facilitando una consultazione rapida e precisa delle informazioni sul veicolo.
Authorizations:
path Parameters
LicensePlate required | string^[a-zA-Z]{2}[0-9]{5}$ Example: ab12345 Targa |
Responses
Response Schema: application/json
Array of objects (bike) | |
success | boolean |
message | string |
error | integer |
Request samples
- C + Libcurl
- Csharp + Restsharp
- Go + Native
- Java + Okhttp
- Java + Unirest
- Javascript + Jquery
- Javascript + Xhr
- Node + Native
- Node + Request
- Node + Unirest
- Objc + Nsurlsession
- Ocaml + Cohttp
- Php + Curl
- Php + Http1
- Php + Http2
- Python + Python3
- Python + Requests
- Ruby + Native
- Shell + Curl
- Shell + Httpie
- Shell + Wget
- Swift + Nsurlsession
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://targa.openapi.it/IT-bike/%7BLicensePlate%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
Response samples
- 200
- 402
- 406
- 417
- 428
- "data": {
- "LicensePlate": "XX40666",
- "Description": "Yamaha Tracer 700 ABS - 74.8 CV",
- "RegistrationYear": "2017",
- "CarMake": "Yamaha",
- "CarModel": "Tracer 700",
- "EngineSize": "",
- "FuelType": "",
- "MakeDescription": "Yamaha",
- "ModelDescription": "Tracer 700",
- "Immobiliser": "",
- "Version": "ABS - 74.8 CV",
- "ABS": "",
- "AirBag": "",
- "Vin": "",
- "KType": "",
- "Timestamp": 1665411640
- "success": true,
- "message": "",
- "error": null
Informazioni sull'assicurazione auto
L'endpoint IT-insurance per l'Italia consente di verificare lo stato assicurativo di un veicolo immatricolato in Italia. Fornendo la targa, è possibile recuperare i dati assicurativi fondamentali, tra cui la compagnia assicurativa (Company), la data di scadenza (Expiry), una rappresentazione temporale della data di scadenza (ExpiryTimeStamp) e se il veicolo è assicurato (IsInsured). Questo servizio garantisce un accesso rapido a informazioni aggiornate sullo stato assicurativo di un veicolo registrato.
Authorizations:
path Parameters
LicensePlate required | string^[a-zA-Z]{2}[0-9]{3}[a-zA-Z]{2}$ Example: zr567zy Targa |
Responses
Response Schema: application/json
Array of objects (insurance) | |
success | boolean |
message | string |
error | integer |
Request samples
- C + Libcurl
- Csharp + Restsharp
- Go + Native
- Java + Okhttp
- Java + Unirest
- Javascript + Jquery
- Javascript + Xhr
- Node + Native
- Node + Request
- Node + Unirest
- Objc + Nsurlsession
- Ocaml + Cohttp
- Php + Curl
- Php + Http1
- Php + Http2
- Python + Python3
- Python + Requests
- Ruby + Native
- Shell + Curl
- Shell + Httpie
- Shell + Wget
- Swift + Nsurlsession
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://targa.openapi.it/IT-insurance/%7BLicensePlate%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
Response samples
- 200
- 402
- 406
- 417
- 428
- "data": {
- "LicensePlate": "ZR567ZY",
- "Company": "VITTORIA ASSICURAZIONI",
- "Expiry": "2023-01-08T00:00:00",
- "ExpiryTimestamp": 1673136000,
- "IsInsured": true,
- "Timestamp": 1665411640
- "success": true,
- "message": "",
- "error": null