example-data.com

cars / #32

2026 Nissan Sentra

Nissan

USD74000.00

manual · diesel · 819 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/32"
)
car = res.json()
{
  "id": 32,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2026,
  "trim": "SE",
  "vin": "R1WPMAS09R69H357W",
  "color": "Red",
  "mileage": 819,
  "price": 74000,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "diesel",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Kevonton",
  "region": "Indiana",
  "countryAlpha2": "PL",
  "sellerUserId": 78,
  "isSold": false,
  "createdAt": "2024-09-22T15:34:32.905Z",
  "updatedAt": "2025-08-22T15:51:38.994Z"
}
Draftbit