example-data.com

cars / #44

2023 Ford Bronco

Ford

USD79690.00

automatic · gas · 51193 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/44"
)
car = res.json()
{
  "id": 44,
  "make": "Ford",
  "model": "Bronco",
  "year": 2023,
  "trim": "EX",
  "vin": "75BUR5XL1BPY9YWC7",
  "color": "Brown",
  "mileage": 51193,
  "price": 79690,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "wagon",
  "listingType": "sale",
  "city": "New Maziemouth",
  "region": "Alabama",
  "countryAlpha2": "GB",
  "sellerUserId": 31,
  "isSold": false,
  "createdAt": "2026-02-03T11:34:23.909Z",
  "updatedAt": "2026-02-21T03:15:04.432Z"
}
Draftbit