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