example-data.com

cars / #174

2014 Ford Explorer

Ford

USD190.00

manual · gas · 17490 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/174"
)
car = res.json()
{
  "id": 174,
  "make": "Ford",
  "model": "Explorer",
  "year": 2014,
  "trim": null,
  "vin": "WPYBJ7GWY0RS03L0T",
  "color": "Blue",
  "mileage": 17490,
  "price": 190,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "van",
  "listingType": "rent",
  "city": "Korbinside",
  "region": "Utah",
  "countryAlpha2": "NL",
  "sellerUserId": 59,
  "isSold": false,
  "createdAt": "2025-08-22T16:26:26.780Z",
  "updatedAt": "2026-01-06T01:23:27.386Z"
}
Draftbit