example-data.com

cars / #105

2017 Mercedes GLC

Mercedes

USD100.00

manual · gas · 79902 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/105"
)
car = res.json()
{
  "id": 105,
  "make": "Mercedes",
  "model": "GLC",
  "year": 2017,
  "trim": "Limited",
  "vin": "2MZKJP9BMBK8N8SCV",
  "color": "White",
  "mileage": 79902,
  "price": 100,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "rent",
  "city": "Chula Vista",
  "region": "Kansas",
  "countryAlpha2": "TH",
  "sellerUserId": 143,
  "isSold": false,
  "createdAt": "2025-09-27T20:10:44.573Z",
  "updatedAt": "2025-12-13T18:53:38.698Z"
}
Draftbit