2022 Nissan Frontier
Nissan
USD40460.00
manual · electric · 20201 mi · Black
cars / #151
Nissan
USD40460.00
manual · electric · 20201 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/151"
);
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/151"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/151"
)
car = res.json() {
"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"
}