example-data.com

cars / #49

2023 Chevrolet Camaro

Chevrolet

USD9750.00

manual · gas · 40040 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/49"
)
car = res.json()
{
  "id": 49,
  "make": "Chevrolet",
  "model": "Camaro",
  "year": 2023,
  "trim": "EX",
  "vin": "05B44JHHFEXBDMXRK",
  "color": "Red",
  "mileage": 40040,
  "price": 9750,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "convertible",
  "listingType": "sale",
  "city": "Lake Grayson",
  "region": "Idaho",
  "countryAlpha2": "IN",
  "sellerUserId": 133,
  "isSold": true,
  "createdAt": "2025-12-28T11:01:39.378Z",
  "updatedAt": "2026-04-04T09:58:48.498Z"
}
Draftbit