2023 Chevrolet Camaro
Chevrolet
USD9750.00
manual · gas · 40040 mi · Red
Overview
cars / #49
Chevrolet
USD9750.00
manual · gas · 40040 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/49" ); 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/49"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/49"
)
car = res.json() Response
{
"id": 49,
"make": "Chevrolet",
"model": "Camaro",
"year": 2023,
"trim": "EX",
"vin": "05B44JHHFEXBDMXRK",
"color": "Red",
"mileage": 40040,
"price": 9750,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "convertible",
"listingType": "sale",
"city": "Lake Grayson",
"region": "Idaho",
"countryAlpha2": "IN",
"sellerUserId": 133,
"isSold": true,
"createdAt": "2025-12-28T11:01:39.378Z",
"updatedAt": "2026-04-04T09:58:48.498Z"
}