example-data.com

cars / #193

2026 Ford Escape

Ford

USD49360.00

automatic · gas · 4802 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/193"
)
car = res.json()
{
  "id": 193,
  "make": "Ford",
  "model": "Escape",
  "year": 2026,
  "trim": "Sport",
  "vin": "0F8W2SRMCG65S077U",
  "color": "Blue",
  "mileage": 4802,
  "price": 49360,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "West Darrellfield",
  "region": "Kentucky",
  "countryAlpha2": "BR",
  "sellerUserId": 155,
  "isSold": true,
  "createdAt": "2025-02-24T23:10:25.679Z",
  "updatedAt": "2025-08-05T20:05:17.370Z"
}
Draftbit