example-data.com

cars / #35

2011 Chevrolet Camaro

Chevrolet

USD49770.00

cvt · hybrid · 207437 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/35"
)
car = res.json()
{
  "id": 35,
  "make": "Chevrolet",
  "model": "Camaro",
  "year": 2011,
  "trim": "Sport",
  "vin": "BCTYGWS5F4ACXFGEC",
  "color": "Black",
  "mileage": 207437,
  "price": 49770,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "hybrid",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Lake Garfield",
  "region": "Oregon",
  "countryAlpha2": "JP",
  "sellerUserId": 173,
  "isSold": true,
  "createdAt": "2024-06-09T06:30:20.983Z",
  "updatedAt": "2025-08-11T08:50:34.060Z"
}
Draftbit