example-data.com

cars / #143

2015 Chevrolet Tahoe

Chevrolet

USD100.00

manual · electric · 74671 mi · Brown

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/143" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/143"
);
const car = await res.json();
import type { Car } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars/143"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/143"
)
car = res.json()
{
  "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"
}
Draftbit