example-data.com

cars / #59

2019 Nissan Sentra

Nissan

USD34900.00

manual · gas · 58045 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/59"
)
car = res.json()
{
  "id": 59,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2019,
  "trim": "Premium",
  "vin": "DMT9L8SG9MJMKDU6X",
  "color": "White",
  "mileage": 58045,
  "price": 34900,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Maynardworth",
  "region": "Delaware",
  "countryAlpha2": "AR",
  "sellerUserId": 152,
  "isSold": false,
  "createdAt": "2025-04-17T03:11:07.360Z",
  "updatedAt": "2026-05-14T20:20:25.784Z"
}
Draftbit