2010 Nissan Pathfinder
Nissan
USD340.00
automatic · gas · 276662 mi · Yellow
Overview
cars / #152
Nissan
USD340.00
automatic · gas · 276662 mi · Yellow
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/152" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/152" ); 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/152"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/152"
)
car = res.json() Response
{
"id": 152,
"make": "Nissan",
"model": "Pathfinder",
"year": 2010,
"trim": null,
"vin": "BUKL9GLLHTW0BLLSC",
"color": "Yellow",
"mileage": 276662,
"price": 340,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "rent",
"city": "North Julie",
"region": "Idaho",
"countryAlpha2": "AE",
"sellerUserId": 24,
"isSold": false,
"createdAt": "2026-03-27T21:20:20.933Z",
"updatedAt": "2026-03-28T03:43:36.771Z"
}