2019 Honda Accord
Honda
USD7770.00
manual · gas · 122656 mi · Brown
cars / #180
Honda
USD7770.00
manual · gas · 122656 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/180"
);
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/180"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/180"
)
car = res.json() {
"id": 180,
"make": "Honda",
"model": "Accord",
"year": 2019,
"trim": "Platinum",
"vin": "SVUJT1XEJWJ6AEXMW",
"color": "Brown",
"mileage": 122656,
"price": 7770,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Lake Monroebury",
"region": "West Virginia",
"countryAlpha2": "SA",
"sellerUserId": 26,
"isSold": false,
"createdAt": "2025-07-20T12:31:37.675Z",
"updatedAt": "2025-11-01T16:16:13.782Z"
}