2015 Chevrolet Tahoe
Chevrolet
USD100.00
manual · electric · 74671 mi · Brown
Overview
cars / #143
Chevrolet
USD100.00
manual · electric · 74671 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/143" ); 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/143"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/143"
)
car = res.json() Response
{
"id": 143,
"make": "Chevrolet",
"model": "Tahoe",
"year": 2015,
"trim": "Sport",
"vin": "4PUH32E3VY86S2M72",
"color": "Brown",
"mileage": 74671,
"price": 100,
"currency": "USD",
"transmission": "manual",
"fuelType": "electric",
"bodyType": "sedan",
"listingType": "rent",
"city": "Oklahoma City",
"region": "Alaska",
"countryAlpha2": "JP",
"sellerUserId": 218,
"isSold": false,
"createdAt": "2024-05-30T13:07:21.674Z",
"updatedAt": "2024-08-30T12:42:10.796Z"
}