example-data.com
Menu
Browse docs and collections

Overview

cars / #104

2022 Toyota Highlander

Toyota

USD67180.00

cvt · gas · 41380 mi · Brown

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 104,
  "make": "Toyota",
  "model": "Highlander",
  "year": 2022,
  "trim": null,
  "vin": "FLNUM1CXL1FX4Y8ZK",
  "color": "Brown",
  "mileage": 41380,
  "price": 67180,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Schowalterburgh",
  "region": "Maine",
  "countryAlpha2": "VN",
  "sellerUserId": 157,
  "isSold": false,
  "createdAt": "2025-08-26T10:11:41.573Z",
  "updatedAt": "2026-04-08T04:25:27.632Z"
}