2024 Ford Bronco
Ford
USD38170.00
automatic · hybrid · 2363 mi · Green
cars / #107
Ford
USD38170.00
automatic · hybrid · 2363 mi · Green
curl -sS \
"https://example-data.com/api/v1/cars/107" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/107"
);
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/107"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/107"
)
car = res.json() {
"id": 107,
"make": "Ford",
"model": "Bronco",
"year": 2024,
"trim": "Premium",
"vin": "3CLRTH208W70EUN19",
"color": "Green",
"mileage": 2363,
"price": 38170,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "truck",
"listingType": "sale",
"city": "New Christaworth",
"region": "Connecticut",
"countryAlpha2": "ES",
"sellerUserId": 54,
"isSold": true,
"createdAt": "2025-06-14T17:02:15.078Z",
"updatedAt": "2025-12-01T14:34:12.004Z"
}