Récupérer les informations des véhicules simplement avec notre API PLAQUE IMMATRICULATION rapide flexible .
Test notre api de plaque immatriculation SIV sur rapidapi.com : https://rapidapi.com/api-plaque-immatriculation-siv-api-plaque-immatriculation-siv-default/api/api-plaque-immatriculation-siv
CURL
PHP
JAVASCRIPT
NodeJs Axios
Python
JAVA
CURL
curl --location --request POST 'https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo'
PHP
'https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST'
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
JAVASCRIPT
const requestOptions = {
method: "POST",
headers: {
'Accept': 'application/json'
},
redirect: "follow"
};
fetch("https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
NodeJs Axios
const axios = require('axios');
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo',
headers: {
'Accept': 'application/json'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Python
import requests
url = "https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo"
payload = {}
headers = { 'Accept': 'application/json'}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
JAVA
OkHttpClient client = new OkHttpClient();
String url = "https://api.apiplaqueimmatriculation.com/get-vehicule-info?immatriculation=AA-123-BC&token=TokenDemo";
Request request = new Request.Builder()
.url(url)
.get()
.addHeader("Accept", "application/json")
.build();
try (Response response = client.newCall(request).execute()) {
if (!response.isSuccessful()) {
throw new IOException("Erreur : " + response.code());
}
String responseBody = response.body().string();
System.out.println(responseBody);
}
{
"data": {
"erreur": "",
"immat": "aa123bc",
"co2": "134",
"energie": "2",
"energieNGC": "GASOIL",
"genreVCG": "",
"genreVCGNGC": "",
"puisFisc": "7",
"carrosserieCG": "COUPE",
"marque": "RENAULT",
"modele": "MEGANE III",
"date1erCir_us": "2009-04-18",
"date1erCir_fr": "18-04-2009",
"collection": "non",
"date30": "1989-06-30",
"vin": "VF1DZ0N0641118804",
"boite_vitesse": "M",
"code_boite_vitesse": "",
"puisFiscReel": "130",
"nr_passagers": "5",
"nb_portes": "5",
"type_mine": "MRE5531A0421",
"couleur": "NOIR",
"poids": "1807 kg",
"cylindres": "4",
"sra_id": "RE80126",
"sra_group": "32",
"sra_commercial": "1.9 DCI 130 XV DE FRANCE",
"logo_marque": "https://api.apiplaqueimmatriculation.com/public/storage/logos_marques/?marque=renault",
"k_type": "31164",
"tecdoc_carid": "31164",
"tecdoc_manuid": "93",
"tecdoc_modelid": "7867",
"code_moteur": "F9Q_872",
},
"api-version": "1.0.0"
}
Énergies de voiture (energie)
ID | Énergie |
---|---|
1 | BIOETHANOL |
2 | DIESEL |
3 | ESS+G.P.L. |
4 | ESSENCE |
5 | ESSENCE - ELEC HYBRIDE |
6 | ESSENCE-ELEC RECHARGEABLE |
7 | FLEXFUEL HYBRIDE |
8 | GAZ NATUREL |
9 | GAZOLE - ELEC HYBRIDE |
10 | GAZOLE-ELEC RECHARGEABLE |
11 | GPL |
12 | ELECTRIQUE |
Genres de voiture (genreVCG)
ID | Genre |
---|---|
1 | VP (Véhicule Particulier) |
2 | CTTE (Camionnette) |
3 | VASP (Véhicule Automoteur Spécialisé) |
4 | CAM (Camion) |
5 | Motocyclette (MTL, MTT1, MTT2, MTTE, MOTO) |
6 | Vélomoteur et Cyclomoteur <= 50cm³ (CL) |
7 | Quadricycles à moteur : quad, voiturette (QM) |
8 | Engin agricole (TRA, Quad, MAGA) |
9 | TM (Tracteur routier) |
10 | Cyclomoteur carrossé à 3 roues (voiturette) (CYCL) |
11 | TCP (Transport en Commun de Personnes) |
12 | TRR (Tracteur Routier) |
13 | Remorque (REM) ou Semi-remorque (SREM) |
14 | RESP (Réserve Spécifique) |
Boîte de vitesse (Boite_vitesse)
Code | Type de boîte de vitesse |
---|---|
A | Automatique |
B | Boîte manuelle |
S | Séquentielle |
V | Variable continue (CVT - Continuously Variable Transmission) |
X | Manuelle robotisée (ou semi-automatique) |