2024 Nissan Sentra
Nissan
USD56050.00
automatic · gas · 26474 mi · Gray
Overview
cars / #163
Nissan
USD56050.00
automatic · gas · 26474 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/163" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/163"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/163"
)
car = res.json() Response
{
"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"
}