2024 Ford Maverick
Ford
USD104590.00
automatic · gas · 10745 mi · Black
Overview
cars / #123
Ford
USD104590.00
automatic · gas · 10745 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/123" ); 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/123"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/123"
)
car = res.json() Response
{
"id": 123,
"make": "Ford",
"model": "Maverick",
"year": 2024,
"trim": null,
"vin": "LBKFVTWJWMK83XZAU",
"color": "Black",
"mileage": 10745,
"price": 104590,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Zulaufchester",
"region": "Washington",
"countryAlpha2": "PH",
"sellerUserId": 178,
"isSold": false,
"createdAt": "2024-06-09T11:44:55.308Z",
"updatedAt": "2025-10-04T16:39:48.971Z"
}