Vites Tipi Sorgulama GET
								https://api.egefilo.com.tr/api/vites-tipleri
GEThttps://api.egefilo.com.tr/api/vites-tipleri
| Örnek | |||
|---|---|---|---|
| key | string | Evet | key=apikey | 
| token | string | Evet | token=apitoken | 
$headers = [
    "Accept" => "application/json",
    "Content-Type" => "application/json",
];
$query = [
    "key" => "apikey",
    "token" => "apitoken",
];
$ch = curl_init("https://api.egefilo.com.tr/api/vites-tipleri?" . http_build_query($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
$err = curl_error($ch);
curl_close($ch);
if ($err) {
  throw \Exception($err);
} else {
  return $response;
}
const url = new URL("https://api.egefilo.com.tr/api/vites-tipleri");
let params = {
    "key": "apikey",
    "token": "apitoken",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
let headers = {
    "Accept": "application/json",
    "Content-Type": "application/json",
}
fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));
curl -X GET -G "https://api.egefilo.com.tr/api/vites-tipleri" 
{
  "data": [
    {
      "id": 1,
      "gear": "Otomatik"
    },
    {
      "id": 2,
      "gear": "Manuel"
    },
    {
      "id": 3,
      "gear": "Yarı otomatik"
    }
  ]
}
| Açıklama | ||
|---|---|---|
| id | string | Araç id numarası. | 
| gear | string | Araca ait vites tipi bilgisi. |