2021 Nissan Sentra
Nissan
USD102420.00
automatic · gas · 19811 mi · Beige
cars / #136
Nissan
USD102420.00
automatic · gas · 19811 mi · Beige
curl -sS \
"https://example-data.com/api/v1/cars/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/136"
);
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/136"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/136"
)
car = res.json() {
"id": 136,
"make": "Nissan",
"model": "Sentra",
"year": 2021,
"trim": null,
"vin": "LXG00RG191CBS1CUW",
"color": "Beige",
"mileage": 19811,
"price": 102420,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "wagon",
"listingType": "sale",
"city": "Adrielberg",
"region": "Arizona",
"countryAlpha2": "NL",
"sellerUserId": 132,
"isSold": true,
"createdAt": "2025-01-10T12:25:40.314Z",
"updatedAt": "2025-12-26T23:33:17.733Z"
}