example-data.com

cars / #152

2010 Nissan Pathfinder

Nissan

USD340.00

automatic · gas · 276662 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/152"
)
car = res.json()
{
  "id": 152,
  "make": "Nissan",
  "model": "Pathfinder",
  "year": 2010,
  "trim": null,
  "vin": "BUKL9GLLHTW0BLLSC",
  "color": "Yellow",
  "mileage": 276662,
  "price": 340,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "rent",
  "city": "North Julie",
  "region": "Idaho",
  "countryAlpha2": "AE",
  "sellerUserId": 24,
  "isSold": false,
  "createdAt": "2026-03-27T21:20:20.933Z",
  "updatedAt": "2026-03-28T03:43:36.771Z"
}
Draftbit