2021 Nissan Sentra
Nissan
USD102420.00
automatic · gas · 19811 mi · Beige
Overview
cars / #136
Nissan
USD102420.00
automatic · gas · 19811 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/136" ); 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/136"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/136"
)
car = res.json() Response
{
"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"
}