example-data.com

cars / #96

2019 Nissan Sentra

Nissan

USD119760.00

manual · gas · 11930 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/96"
)
car = res.json()
{
  "id": 96,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2019,
  "trim": "SE",
  "vin": "VPUMSKCPLW3197D05",
  "color": "Beige",
  "mileage": 11930,
  "price": 119760,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "New Addison",
  "region": "Massachusetts",
  "countryAlpha2": "ZA",
  "sellerUserId": 133,
  "isSold": false,
  "createdAt": "2025-02-11T03:02:09.598Z",
  "updatedAt": "2025-08-05T22:41:08.965Z"
}
Draftbit