example-data.com

cars / #83

2021 Chevrolet Camaro

Chevrolet

USD105710.00

cvt · gas · 70865 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/83"
)
car = res.json()
{
  "id": 83,
  "make": "Chevrolet",
  "model": "Camaro",
  "year": 2021,
  "trim": null,
  "vin": "WE4N8NDE5F8BWPA4K",
  "color": "Red",
  "mileage": 70865,
  "price": 105710,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "South Charleycester",
  "region": "Arkansas",
  "countryAlpha2": "MA",
  "sellerUserId": 224,
  "isSold": false,
  "createdAt": "2026-03-16T14:22:18.712Z",
  "updatedAt": "2026-03-29T06:02:07.454Z"
}
Draftbit