2019 Chevrolet Equinox
Chevrolet
USD80.00
automatic · gas · 5623 mi · Beige
Overview
cars / #37
Chevrolet
USD80.00
automatic · gas · 5623 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/37" ); 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/37"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/37"
)
car = res.json() Response
{
"id": 37,
"make": "Chevrolet",
"model": "Equinox",
"year": 2019,
"trim": "Sport",
"vin": "S3F59DTGZZ64BA2C7",
"color": "Beige",
"mileage": 5623,
"price": 80,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "rent",
"city": "Fort Edmundborough",
"region": "Arkansas",
"countryAlpha2": "GR",
"sellerUserId": 169,
"isSold": false,
"createdAt": "2025-02-17T16:02:52.122Z",
"updatedAt": "2025-11-19T02:07:38.448Z"
}