2024 Ford Maverick
Ford
USD104590.00
automatic · gas · 10745 mi · Black
cars / #123
Ford
USD104590.00
automatic · gas · 10745 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/123"
);
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/123"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/123"
)
car = res.json() {
"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"
}