2023 Chevrolet Equinox
Chevrolet
USD18510.00
automatic · plugin_hybrid · 37747 mi · Black
Overview
cars / #91
Chevrolet
USD18510.00
automatic · plugin_hybrid · 37747 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/91" ); 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/91"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/91"
)
car = res.json() Response
{
"id": 91,
"make": "Chevrolet",
"model": "Equinox",
"year": 2023,
"trim": "Platinum",
"vin": "MLF0J1D4HPKG0XUVS",
"color": "Black",
"mileage": 37747,
"price": 18510,
"currency": "USD",
"transmission": "automatic",
"fuelType": "plugin_hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "Londonburgh",
"region": "New Jersey",
"countryAlpha2": "SE",
"sellerUserId": 121,
"isSold": false,
"createdAt": "2024-12-22T20:26:05.540Z",
"updatedAt": "2026-01-13T19:42:26.435Z"
}