GET
/vehicles/{vehicle_id}
curl \
--request GET 'https://api.fleetee.io/vehicles/{vehicle_id}' \
--header "x-api-key: $API_KEY"
Response examples (200)
{
"id": 42,
"registration_year": 42,
"registration_number": "string",
"brand": "string",
"model": "string",
"category": {
"id": 42,
"name": "string"
},
"kilometers": 42,
"energy": "Essence SP",
"gearbox": "Manuelle",
"description": "string",
"nb_places": 42,
"nb_doors": 42,
"pictures": [
{
"medium_url": "string",
"small_url": "string",
"square_url": "string",
"url": "string"
}
],
"specificities": {
"cooling": true,
"gps": true,
"bluetooth": true,
"reverse_radar": true,
"baby_seat": true
},
"agency": {
"id": 42,
"name": "string",
"code": "string",
"address": {
"street_line_one": "string",
"street_line_two": "string",
"district": "string",
"postcode": 42,
"city": "string"
}
},
"prices": [
{
"min_days": 42,
"max_days": 42,
"high_season": 42.0,
"medium_season": 42.0,
"low_season": 42.0
}
],
"options": [
{
"name": "string",
"amount": 42.0,
"code_option": "string",
"pricing_type": "per_day",
"count": 42,
"icon": "string",
"option_id": 42
}
],
"agencies": [
{
"id": 42,
"name": "string",
"code": "string",
"address": {
"street_line_one": "string",
"street_line_two": "string",
"district": "string",
"postcode": 42,
"city": "string"
}
}
],
"mileage_levels": [
{
"id": 42,
"mileage": 42.0,
"is_default": true,
"amount": 42.0,
"unlimited": true,
"included_in_booking": true
}
],
"metadata": {}
}