2023 Toyota Prius
Toyota
USD116180.00
automatic · gas · 9439 mi · Brown
Overview
cars / #157
Toyota
USD116180.00
automatic · gas · 9439 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/157" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/157"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/157"
)
car = res.json() Response
{
"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"
}