2018 Honda CR-V
Honda
USD36390.00
automatic · diesel · 73206 mi · Gray
Overview
cars / #133
Honda
USD36390.00
automatic · diesel · 73206 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/133" ); 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/133"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/133"
)
car = res.json() Response
{
"id": 133,
"make": "Honda",
"model": "CR-V",
"year": 2018,
"trim": "Platinum",
"vin": "Y5PRR80V4A5NXARTV",
"color": "Gray",
"mileage": 73206,
"price": 36390,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "sedan",
"listingType": "sale",
"city": "McLaughlinchester",
"region": "Wyoming",
"countryAlpha2": "JP",
"sellerUserId": 183,
"isSold": false,
"createdAt": "2026-02-02T10:44:31.154Z",
"updatedAt": "2026-02-28T00:20:57.253Z"
}