example-data.com

cars / #71

2020 Ford Bronco

Ford

USD16980.00

manual · gas · 58429 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/71"
)
car = res.json()
{
  "id": 71,
  "make": "Ford",
  "model": "Bronco",
  "year": 2020,
  "trim": "EX",
  "vin": "Z6S5D8GF3S0K4CED6",
  "color": "Black",
  "mileage": 58429,
  "price": 16980,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "wagon",
  "listingType": "sale",
  "city": "New Danialboro",
  "region": "Nebraska",
  "countryAlpha2": "ZA",
  "sellerUserId": 177,
  "isSold": false,
  "createdAt": "2024-12-01T19:32:31.689Z",
  "updatedAt": "2025-10-28T00:05:19.254Z"
}
Draftbit