example-data.com
Menu
Browse docs and collections

Overview

cars / #199

2022 Nissan Rogue

Nissan

USD95390.00

automatic · gas · 4918 mi · Red

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/199" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/199"
);
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/199"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/199"
)
car = res.json()

Response

{
  "id": 199,
  "make": "Nissan",
  "model": "Rogue",
  "year": 2022,
  "trim": "Limited",
  "vin": "H5G9GHAUGAJ0Y1R3L",
  "color": "Red",
  "mileage": 4918,
  "price": 95390,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "South Troyton",
  "region": "Florida",
  "countryAlpha2": "CH",
  "sellerUserId": 115,
  "isSold": false,
  "createdAt": "2026-05-14T05:30:49.162Z",
  "updatedAt": "2026-05-17T09:42:09.646Z"
}