2012 Honda CR-V
Honda
USD37090.00
manual · gas · 45775 mi · Blue
Overview
cars / #55
Honda
USD37090.00
manual · gas · 45775 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/55" ); 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/55"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/55"
)
car = res.json() Response
{
"id": 55,
"make": "Honda",
"model": "CR-V",
"year": 2012,
"trim": null,
"vin": "FF8A21BEU8FCJLD15",
"color": "Blue",
"mileage": 45775,
"price": 37090,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "Maeganchester",
"region": "California",
"countryAlpha2": "PE",
"sellerUserId": 184,
"isSold": true,
"createdAt": "2025-11-03T12:07:24.889Z",
"updatedAt": "2026-01-02T12:23:42.641Z"
}