example-data.com

cars / #137

2017 Ford Edge

Ford

USD280.00

automatic · gas · 80198 mi · Brown

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/137"
)
car = res.json()
{
  "id": 137,
  "make": "Ford",
  "model": "Edge",
  "year": 2017,
  "trim": null,
  "vin": "55FPHP01Z8K8HGUPN",
  "color": "Brown",
  "mileage": 80198,
  "price": 280,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "rent",
  "city": "West Julianne",
  "region": "Maryland",
  "countryAlpha2": "AR",
  "sellerUserId": 204,
  "isSold": false,
  "createdAt": "2025-01-27T17:58:46.057Z",
  "updatedAt": "2025-12-03T22:37:30.981Z"
}
Draftbit