2022 Nissan Frontier
Nissan
USD40460.00
manual · electric · 20201 mi · Black
Overview
cars / #151
Nissan
USD40460.00
manual · electric · 20201 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/151" ); 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/151"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/151"
)
car = res.json() Response
{
"id": 151,
"make": "Nissan",
"model": "Frontier",
"year": 2022,
"trim": "Limited",
"vin": "JXG0L1SRYMW53BWHA",
"color": "Black",
"mileage": 20201,
"price": 40460,
"currency": "USD",
"transmission": "manual",
"fuelType": "electric",
"bodyType": "sedan",
"listingType": "sale",
"city": "Fort Jeanie",
"region": "Ohio",
"countryAlpha2": "BE",
"sellerUserId": 128,
"isSold": false,
"createdAt": "2025-09-09T17:06:28.251Z",
"updatedAt": "2026-01-29T05:54:56.814Z"
}