2019 Toyota Camry
Toyota
USD14810.00
automatic · gas · 12406 mi · Beige
Overview
cars / #11
Toyota
USD14810.00
automatic · gas · 12406 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/11" ); 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/11"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/11"
)
car = res.json() Response
{
"id": 11,
"make": "Toyota",
"model": "Camry",
"year": 2019,
"trim": "EX",
"vin": "1HUA2U9BCTMBR3X4M",
"color": "Beige",
"mileage": 12406,
"price": 14810,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "van",
"listingType": "sale",
"city": "Lake Maynardview",
"region": "Michigan",
"countryAlpha2": "US",
"sellerUserId": 23,
"isSold": false,
"createdAt": "2024-12-12T21:03:55.763Z",
"updatedAt": "2025-05-01T07:30:34.895Z"
}