example-data.com

cars / #147

2021 Nissan Altima

Nissan

USD85110.00

automatic · diesel · 50803 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/147"
)
car = res.json()
{
  "id": 147,
  "make": "Nissan",
  "model": "Altima",
  "year": 2021,
  "trim": "SE",
  "vin": "C5NM5RG2TD3168TMB",
  "color": "Yellow",
  "mileage": 50803,
  "price": 85110,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Adelafurt",
  "region": "Illinois",
  "countryAlpha2": "SA",
  "sellerUserId": 93,
  "isSold": false,
  "createdAt": "2025-02-28T03:59:19.376Z",
  "updatedAt": "2025-06-23T21:00:37.779Z"
}
Draftbit