example-data.com

cars / #198

2021 Ford F-150

Ford

USD40290.00

automatic · electric · 77436 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/198"
)
car = res.json()
{
  "id": 198,
  "make": "Ford",
  "model": "F-150",
  "year": 2021,
  "trim": "Sport",
  "vin": "1AYWH2MWHAP03R79P",
  "color": "Yellow",
  "mileage": 77436,
  "price": 40290,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Vivianberg",
  "region": "Maine",
  "countryAlpha2": "AT",
  "sellerUserId": 19,
  "isSold": true,
  "createdAt": "2025-06-07T03:49:29.000Z",
  "updatedAt": "2025-09-20T20:28:39.987Z"
}
Draftbit