example-data.com

cars / #114

2023 Mercedes GLE

Mercedes

USD12070.00

automatic · diesel · 41435 mi · Beige

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/114"
)
car = res.json()
{
  "id": 114,
  "make": "Mercedes",
  "model": "GLE",
  "year": 2023,
  "trim": null,
  "vin": "20P5NKHU3EPARCLNK",
  "color": "Beige",
  "mileage": 41435,
  "price": 12070,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "New Juvenalhaven",
  "region": "New Hampshire",
  "countryAlpha2": "PH",
  "sellerUserId": 163,
  "isSold": false,
  "createdAt": "2024-10-12T16:55:56.135Z",
  "updatedAt": "2025-02-19T05:52:33.026Z"
}
Draftbit