example-data.com

cars / #133

2018 Honda CR-V

Honda

USD36390.00

automatic · diesel · 73206 mi · Gray

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/133" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/133"
);
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/133"
);
const car = (await res.json()) as Car;
import requests

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