example-data.com

cars / #25

2018 Honda Civic

Honda

USD102490.00

cvt · electric · 75734 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/25"
)
car = res.json()
{
  "id": 25,
  "make": "Honda",
  "model": "Civic",
  "year": 2018,
  "trim": "EX",
  "vin": "XSKDH6WDCTBJWMY11",
  "color": "Red",
  "mileage": 75734,
  "price": 102490,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "electric",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Placentia",
  "region": "Virginia",
  "countryAlpha2": "DE",
  "sellerUserId": 228,
  "isSold": false,
  "createdAt": "2024-11-27T06:29:46.651Z",
  "updatedAt": "2026-01-05T19:31:52.947Z"
}
Draftbit