example-data.com
Menu
Browse docs and collections

Overview

cars / #176

2016 Chevrolet Tahoe

Chevrolet

USD113350.00

automatic · plugin_hybrid · 51513 mi · Gray

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/176" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/176"
);
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/176"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/176"
)
car = res.json()

Response

{
  "id": 176,
  "make": "Chevrolet",
  "model": "Tahoe",
  "year": 2016,
  "trim": "Sport",
  "vin": "UAP9CTBZ7GDWBC57N",
  "color": "Gray",
  "mileage": 51513,
  "price": 113350,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "plugin_hybrid",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "North Javontown",
  "region": "Illinois",
  "countryAlpha2": "KE",
  "sellerUserId": 120,
  "isSold": false,
  "createdAt": "2025-09-04T12:38:39.092Z",
  "updatedAt": "2026-03-31T16:51:22.925Z"
}