example-data.com

cars / #166

2019 Ford Maverick

Ford

USD69530.00

cvt · plugin_hybrid · 84932 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/166"
)
car = res.json()
{
  "id": 166,
  "make": "Ford",
  "model": "Maverick",
  "year": 2019,
  "trim": null,
  "vin": "UJ17YGTHHKXSCX4J2",
  "color": "White",
  "mileage": 84932,
  "price": 69530,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "plugin_hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Port Lillieshire",
  "region": "Tennessee",
  "countryAlpha2": "BE",
  "sellerUserId": 226,
  "isSold": false,
  "createdAt": "2024-10-18T00:46:35.394Z",
  "updatedAt": "2026-05-18T08:38:21.656Z"
}
Draftbit