example-data.com

cars / #124

2023 Nissan Sentra

Nissan

USD112340.00

automatic · hybrid · 7848 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/124"
)
car = res.json()
{
  "id": 124,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2023,
  "trim": "Premium",
  "vin": "GR3VYF421DS96APCT",
  "color": "Brown",
  "mileage": 7848,
  "price": 112340,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Cummeratatown",
  "region": "Missouri",
  "countryAlpha2": "CL",
  "sellerUserId": 65,
  "isSold": false,
  "createdAt": "2024-09-13T13:07:33.817Z",
  "updatedAt": "2024-10-28T03:18:51.612Z"
}
Draftbit