example-data.com

cars / #163

2024 Nissan Sentra

Nissan

USD56050.00

automatic · gas · 26474 mi · Gray

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/163"
)
car = res.json()
{
  "id": 163,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2024,
  "trim": "EX",
  "vin": "DJGBS687TP07Z6MDH",
  "color": "Gray",
  "mileage": 26474,
  "price": 56050,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "wagon",
  "listingType": "sale",
  "city": "Katharinafield",
  "region": "Vermont",
  "countryAlpha2": "IN",
  "sellerUserId": 74,
  "isSold": false,
  "createdAt": "2025-01-09T14:06:06.263Z",
  "updatedAt": "2025-05-11T15:57:20.742Z"
}
Draftbit