2017 Honda HR-V
Honda
USD27470.00
automatic · gas · 92283 mi · Silver
cars / #121
Honda
USD27470.00
automatic · gas · 92283 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/121"
);
const car = await res.json();import type { Car } from "https://example-data.com/types/cars.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cars/121"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/121"
)
car = res.json() {
"id": 121,
"make": "Honda",
"model": "HR-V",
"year": 2017,
"trim": "Sport",
"vin": "P3NP503BPLV90NT64",
"color": "Silver",
"mileage": 92283,
"price": 27470,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Irvingmouth",
"region": "Iowa",
"countryAlpha2": "EG",
"sellerUserId": 52,
"isSold": false,
"createdAt": "2024-11-06T23:42:14.551Z",
"updatedAt": "2024-11-09T13:05:33.430Z"
}