example-data.com

cars / #101

2022 Ford Bronco

Ford

USD12460.00

automatic · gas · 23088 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/101"
)
car = res.json()
{
  "id": 101,
  "make": "Ford",
  "model": "Bronco",
  "year": 2022,
  "trim": "EX",
  "vin": "PT300EEEE99W9WB7E",
  "color": "Yellow",
  "mileage": 23088,
  "price": 12460,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Diamond Bar",
  "region": "Arizona",
  "countryAlpha2": "AE",
  "sellerUserId": 49,
  "isSold": true,
  "createdAt": "2024-07-17T10:16:15.242Z",
  "updatedAt": "2025-03-17T14:42:53.672Z"
}
Draftbit