example-data.com

cars / #175

2025 Chevrolet Malibu

Chevrolet

USD33350.00

manual · gas · 10675 mi · Red

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/175" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/175"
);
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/175"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/175"
)
car = res.json()
{
  "id": 175,
  "make": "Chevrolet",
  "model": "Malibu",
  "year": 2025,
  "trim": null,
  "vin": "P022E7PBSJB1NUHSZ",
  "color": "Red",
  "mileage": 10675,
  "price": 33350,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Port Kellybury",
  "region": "Minnesota",
  "countryAlpha2": "FI",
  "sellerUserId": 214,
  "isSold": false,
  "createdAt": "2024-12-25T04:33:28.304Z",
  "updatedAt": "2025-02-27T01:33:19.032Z"
}
Draftbit