2011 Chevrolet Camaro
Chevrolet
USD49770.00
cvt · hybrid · 207437 mi · Black
Overview
cars / #35
Chevrolet
USD49770.00
cvt · hybrid · 207437 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/35" ); 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/35"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/35"
)
car = res.json() Response
{
"id": 35,
"make": "Chevrolet",
"model": "Camaro",
"year": 2011,
"trim": "Sport",
"vin": "BCTYGWS5F4ACXFGEC",
"color": "Black",
"mileage": 207437,
"price": 49770,
"currency": "USD",
"transmission": "cvt",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "Lake Garfield",
"region": "Oregon",
"countryAlpha2": "JP",
"sellerUserId": 173,
"isSold": true,
"createdAt": "2024-06-09T06:30:20.983Z",
"updatedAt": "2025-08-11T08:50:34.060Z"
}