example-data.com

cars / #55

2012 Honda CR-V

Honda

USD37090.00

manual · gas · 45775 mi · Blue

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/55" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/55"
);
const car = await res.json();
import type { Car } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars/55"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/55"
)
car = res.json()
{
  "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"
}
Draftbit