example-data.com

cars / #11

2019 Toyota Camry

Toyota

USD14810.00

automatic · gas · 12406 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/11"
)
car = res.json()
{
  "id": 11,
  "make": "Toyota",
  "model": "Camry",
  "year": 2019,
  "trim": "EX",
  "vin": "1HUA2U9BCTMBR3X4M",
  "color": "Beige",
  "mileage": 12406,
  "price": 14810,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "van",
  "listingType": "sale",
  "city": "Lake Maynardview",
  "region": "Michigan",
  "countryAlpha2": "US",
  "sellerUserId": 23,
  "isSold": false,
  "createdAt": "2024-12-12T21:03:55.763Z",
  "updatedAt": "2025-05-01T07:30:34.895Z"
}
Draftbit