2020 Chevrolet Suburban
Chevrolet
USD72910.00
automatic · hybrid · 3342 mi · Beige
Overview
cars / #165
Chevrolet
USD72910.00
automatic · hybrid · 3342 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/165" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/165" ); 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/165"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/165"
)
car = res.json() Response
{
"id": 165,
"make": "Chevrolet",
"model": "Suburban",
"year": 2020,
"trim": "Sport",
"vin": "A06F2CRJP274HPDZK",
"color": "Beige",
"mileage": 3342,
"price": 72910,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "coupe",
"listingType": "sale",
"city": "Rahulfield",
"region": "Georgia",
"countryAlpha2": "CN",
"sellerUserId": 10,
"isSold": false,
"createdAt": "2024-07-26T02:19:26.433Z",
"updatedAt": "2025-04-15T08:39:18.122Z"
}