2022 Ford Mustang
Ford
USD8470.00
cvt · gas · 46450 mi · Black
Overview
cars / #181
Ford
USD8470.00
cvt · gas · 46450 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/181" ); 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/181"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/181"
)
car = res.json() Response
{
"id": 181,
"make": "Ford",
"model": "Mustang",
"year": 2022,
"trim": "Limited",
"vin": "RMP1RTUVEPPFKSR6X",
"color": "Black",
"mileage": 46450,
"price": 8470,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Port Valentina",
"region": "Vermont",
"countryAlpha2": "JP",
"sellerUserId": 180,
"isSold": false,
"createdAt": "2024-10-09T12:14:53.266Z",
"updatedAt": "2024-12-21T06:55:19.427Z"
}