example-data.com

cars / #30

2024 Ford Bronco

Ford

USD58330.00

automatic · gas · 27855 mi · Green

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/30"
)
car = res.json()
{
  "id": 30,
  "make": "Ford",
  "model": "Bronco",
  "year": 2024,
  "trim": null,
  "vin": "ZS9M6RKAZSRFC5ZL9",
  "color": "Green",
  "mileage": 27855,
  "price": 58330,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Jaylanville",
  "region": "Arkansas",
  "countryAlpha2": "CO",
  "sellerUserId": 42,
  "isSold": true,
  "createdAt": "2025-07-17T10:11:29.845Z",
  "updatedAt": "2026-05-05T15:47:14.398Z"
}
Draftbit