2024 Chevrolet Equinox
Chevrolet
USD76870.00
automatic · gas · 8338 mi · Yellow
Overview
cars / #131
Chevrolet
USD76870.00
automatic · gas · 8338 mi · Yellow
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/131" ); 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/131"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/131"
)
car = res.json() Response
{
"id": 131,
"make": "Chevrolet",
"model": "Equinox",
"year": 2024,
"trim": null,
"vin": "N6LK0VNXRR7BM7842",
"color": "Yellow",
"mileage": 8338,
"price": 76870,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Reno",
"region": "Maryland",
"countryAlpha2": "EG",
"sellerUserId": 235,
"isSold": false,
"createdAt": "2025-09-04T13:31:36.887Z",
"updatedAt": "2026-04-26T07:02:20.324Z"
}