example-data.com

cars / #27

2013 Nissan Pathfinder

Nissan

USD30.00

automatic · gas · 169066 mi · Green

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/27" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/27"
);
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/27"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/27"
)
car = res.json()
{
  "id": 27,
  "make": "Nissan",
  "model": "Pathfinder",
  "year": 2013,
  "trim": null,
  "vin": "7UU8W9VDWTX6DYLC8",
  "color": "Green",
  "mileage": 169066,
  "price": 30,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "Krajcikville",
  "region": "South Carolina",
  "countryAlpha2": "TR",
  "sellerUserId": 178,
  "isSold": false,
  "createdAt": "2024-08-21T21:55:40.518Z",
  "updatedAt": "2025-11-22T05:26:14.389Z"
}
Draftbit