2017 Chevrolet Malibu
Chevrolet
USD120.00
cvt · gas · 76863 mi · Gray
Overview
cars / #77
Chevrolet
USD120.00
cvt · gas · 76863 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/77" ); 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/77"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/77"
)
car = res.json() Response
{
"id": 77,
"make": "Chevrolet",
"model": "Malibu",
"year": 2017,
"trim": "Sport",
"vin": "23L7M0CNFWJ14ZMRC",
"color": "Gray",
"mileage": 76863,
"price": 120,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "rent",
"city": "South Ashleefield",
"region": "Georgia",
"countryAlpha2": "NZ",
"sellerUserId": 128,
"isSold": false,
"createdAt": "2025-05-31T19:37:23.362Z",
"updatedAt": "2025-12-18T17:17:46.321Z"
}