example-data.com
Menu
Browse docs and collections

Overview

cars / #96

2019 Nissan Sentra

Nissan

USD119760.00

manual · gas · 11930 mi · Beige

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 96,
  "make": "Nissan",
  "model": "Sentra",
  "year": 2019,
  "trim": "SE",
  "vin": "VPUMSKCPLW3197D05",
  "color": "Beige",
  "mileage": 11930,
  "price": 119760,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "New Addison",
  "region": "Massachusetts",
  "countryAlpha2": "ZA",
  "sellerUserId": 133,
  "isSold": false,
  "createdAt": "2025-02-11T03:02:09.598Z",
  "updatedAt": "2025-08-05T22:41:08.965Z"
}