2010 Ford Explorer
Ford
USD68480.00
automatic · gas · 93164 mi · White
cars / #134
Ford
USD68480.00
automatic · gas · 93164 mi · White
curl -sS \
"https://example-data.com/api/v1/cars/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/134"
);
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/134"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/134"
)
car = res.json() {
"id": 134,
"make": "Ford",
"model": "Explorer",
"year": 2010,
"trim": "SE",
"vin": "C49LDKHN6B5AMY1GB",
"color": "White",
"mileage": 93164,
"price": 68480,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "East Daniellebury",
"region": "North Carolina",
"countryAlpha2": "SG",
"sellerUserId": 14,
"isSold": false,
"createdAt": "2024-06-08T18:09:26.391Z",
"updatedAt": "2025-10-15T11:24:07.071Z"
}