example-data.com
Menu
Browse docs and collections

Overview

cars / #135

2026 Chevrolet Traverse

Chevrolet

USD36480.00

manual · gas · 2134 mi · Yellow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 135,
  "make": "Chevrolet",
  "model": "Traverse",
  "year": 2026,
  "trim": "Touring",
  "vin": "XEAVU83KCYAH1WD17",
  "color": "Yellow",
  "mileage": 2134,
  "price": 36480,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Pittsfield",
  "region": "California",
  "countryAlpha2": "PE",
  "sellerUserId": 8,
  "isSold": false,
  "createdAt": "2026-04-08T15:47:00.701Z",
  "updatedAt": "2026-05-12T19:54:21.016Z"
}