example-data.com

cars / #155

2015 Honda Civic

Honda

USD34050.00

automatic · gas · 54799 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/155"
)
car = res.json()
{
  "id": 155,
  "make": "Honda",
  "model": "Civic",
  "year": 2015,
  "trim": "LX",
  "vin": "3433EFW1VGVV56LNA",
  "color": "Brown",
  "mileage": 54799,
  "price": 34050,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Rancho Cucamonga",
  "region": "Nebraska",
  "countryAlpha2": "BR",
  "sellerUserId": 119,
  "isSold": false,
  "createdAt": "2026-01-17T09:46:31.231Z",
  "updatedAt": "2026-05-04T03:37:09.336Z"
}
Draftbit