example-data.com

cars / #66

2022 Nissan Leaf

Nissan

USD108190.00

automatic · electric · 62400 mi · Gray

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/66"
)
car = res.json()
{
  "id": 66,
  "make": "Nissan",
  "model": "Leaf",
  "year": 2022,
  "trim": null,
  "vin": "7DEZ85SEFRKTEN2B2",
  "color": "Gray",
  "mileage": 62400,
  "price": 108190,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "convertible",
  "listingType": "sale",
  "city": "Lake Jessica",
  "region": "Georgia",
  "countryAlpha2": "FJ",
  "sellerUserId": 5,
  "isSold": false,
  "createdAt": "2025-01-21T17:09:59.768Z",
  "updatedAt": "2026-01-12T01:38:15.835Z"
}
Draftbit