example-data.com

cars / #162

2020 Ford Mustang

Ford

USD86440.00

automatic · hybrid · 55928 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/162"
)
car = res.json()
{
  "id": 162,
  "make": "Ford",
  "model": "Mustang",
  "year": 2020,
  "trim": "EX",
  "vin": "BU866Y07RAKVJS9ZR",
  "color": "Yellow",
  "mileage": 55928,
  "price": 86440,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "South Haylee",
  "region": "Montana",
  "countryAlpha2": "SA",
  "sellerUserId": 60,
  "isSold": false,
  "createdAt": "2026-04-12T20:18:30.935Z",
  "updatedAt": "2026-04-21T11:51:57.512Z"
}
Draftbit