example-data.com

cars / #191

2016 Nissan Leaf

Nissan

USD64470.00

automatic · gas · 77023 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/191"
)
car = res.json()
{
  "id": 191,
  "make": "Nissan",
  "model": "Leaf",
  "year": 2016,
  "trim": "Sport",
  "vin": "YURL7KH2FLK4D81WP",
  "color": "Black",
  "mileage": 77023,
  "price": 64470,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "South Claud",
  "region": "Virginia",
  "countryAlpha2": "SA",
  "sellerUserId": 20,
  "isSold": false,
  "createdAt": "2025-06-24T01:30:40.357Z",
  "updatedAt": "2026-01-30T05:19:00.796Z"
}
Draftbit