example-data.com
Menu
Browse docs and collections

Overview

cars / #66

2022 Nissan Leaf

Nissan

USD108190.00

automatic · electric · 62400 mi · Gray

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 66,
  "make": "Nissan",
  "model": "Leaf",
  "year": 2022,
  "trim": null,
  "vin": "7DEZ85SEFRKTEN2B2",
  "color": "Gray",
  "mileage": 62400,
  "price": 108190,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "convertible",
  "listingType": "sale",
  "city": "Lake Jessica",
  "region": "Georgia",
  "countryAlpha2": "FJ",
  "sellerUserId": 5,
  "isSold": false,
  "createdAt": "2025-01-21T17:09:59.768Z",
  "updatedAt": "2026-01-12T01:38:15.835Z"
}