2020 Ford Bronco
Ford
USD16980.00
manual · gas · 58429 mi · Black
Overview
cars / #71
Ford
USD16980.00
manual · gas · 58429 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/71" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/71"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/71"
)
car = res.json() Response
{
"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"
}