example-data.com

cars / #181

2022 Ford Mustang

Ford

USD8470.00

cvt · gas · 46450 mi · Black

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/181"
)
car = res.json()
{
  "id": 181,
  "make": "Ford",
  "model": "Mustang",
  "year": 2022,
  "trim": "Limited",
  "vin": "RMP1RTUVEPPFKSR6X",
  "color": "Black",
  "mileage": 46450,
  "price": 8470,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Port Valentina",
  "region": "Vermont",
  "countryAlpha2": "JP",
  "sellerUserId": 180,
  "isSold": false,
  "createdAt": "2024-10-09T12:14:53.266Z",
  "updatedAt": "2024-12-21T06:55:19.427Z"
}
Draftbit