2019 Ford Maverick
Ford
USD69530.00
cvt · plugin_hybrid · 84932 mi · White
Overview
cars / #166
Ford
USD69530.00
cvt · plugin_hybrid · 84932 mi · White
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/166" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/166" ); 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/166"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/166"
)
car = res.json() Response
{
"id": 166,
"make": "Ford",
"model": "Maverick",
"year": 2019,
"trim": null,
"vin": "UJ17YGTHHKXSCX4J2",
"color": "White",
"mileage": 84932,
"price": 69530,
"currency": "USD",
"transmission": "cvt",
"fuelType": "plugin_hybrid",
"bodyType": "sedan",
"listingType": "sale",
"city": "Port Lillieshire",
"region": "Tennessee",
"countryAlpha2": "BE",
"sellerUserId": 226,
"isSold": false,
"createdAt": "2024-10-18T00:46:35.394Z",
"updatedAt": "2026-05-18T08:38:21.656Z"
}