example-data.com

cars / #134

2010 Ford Explorer

Ford

USD68480.00

automatic · gas · 93164 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/134"
)
car = res.json()
{
  "id": 134,
  "make": "Ford",
  "model": "Explorer",
  "year": 2010,
  "trim": "SE",
  "vin": "C49LDKHN6B5AMY1GB",
  "color": "White",
  "mileage": 93164,
  "price": 68480,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "East Daniellebury",
  "region": "North Carolina",
  "countryAlpha2": "SG",
  "sellerUserId": 14,
  "isSold": false,
  "createdAt": "2024-06-08T18:09:26.391Z",
  "updatedAt": "2025-10-15T11:24:07.071Z"
}
Draftbit