2013 Nissan Sentra
Nissan
USD78270.00
automatic · gas · 232505 mi · Red
cars / #182
Nissan
USD78270.00
automatic · gas · 232505 mi · Red
curl -sS \
"https://example-data.com/api/v1/cars/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/182"
);
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/182"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/182"
)
car = res.json() {
"id": 182,
"make": "Nissan",
"model": "Sentra",
"year": 2013,
"trim": "Sport",
"vin": "06YARH5EJNUXP18TN",
"color": "Red",
"mileage": 232505,
"price": 78270,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Elgin",
"region": "Florida",
"countryAlpha2": "BR",
"sellerUserId": 109,
"isSold": true,
"createdAt": "2024-09-01T19:11:44.124Z",
"updatedAt": "2025-04-14T20:59:13.271Z"
}