example-data.com

cars / #115

2026 Ford Explorer

Ford

USD25720.00

automatic · gas · 2371 mi · Red

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/115"
)
car = res.json()
{
  "id": 115,
  "make": "Ford",
  "model": "Explorer",
  "year": 2026,
  "trim": null,
  "vin": "UR2UTG90NAG2EH9ZD",
  "color": "Red",
  "mileage": 2371,
  "price": 25720,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "East Nicolasview",
  "region": "Utah",
  "countryAlpha2": "AR",
  "sellerUserId": 232,
  "isSold": false,
  "createdAt": "2025-06-15T05:24:32.406Z",
  "updatedAt": "2025-07-23T18:04:07.747Z"
}
Draftbit