example-data.com

cars / #118

2021 Ford Bronco

Ford

USD23820.00

manual · gas · 49784 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/118"
)
car = res.json()
{
  "id": 118,
  "make": "Ford",
  "model": "Bronco",
  "year": 2021,
  "trim": "Touring",
  "vin": "0DYLZR55TEL8HBUBZ",
  "color": "Brown",
  "mileage": 49784,
  "price": 23820,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Kenner",
  "region": "Ohio",
  "countryAlpha2": "FI",
  "sellerUserId": 239,
  "isSold": true,
  "createdAt": "2025-11-28T23:51:31.247Z",
  "updatedAt": "2025-12-29T00:03:10.983Z"
}
Draftbit