2023 Toyota Prius
Toyota
USD116180.00
automatic · gas · 9439 mi · Brown
cars / #157
Toyota
USD116180.00
automatic · gas · 9439 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/157"
);
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/157"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/157"
)
car = res.json() {
"id": 157,
"make": "Toyota",
"model": "Prius",
"year": 2023,
"trim": null,
"vin": "XT5ASDFUF7YEHXUHW",
"color": "Brown",
"mileage": 9439,
"price": 116180,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "North Willowbury",
"region": "South Carolina",
"countryAlpha2": "VN",
"sellerUserId": 148,
"isSold": false,
"createdAt": "2025-10-01T01:45:31.378Z",
"updatedAt": "2025-12-20T18:48:21.600Z"
}