example-data.com

cars / #167

2025 Ford Maverick

Ford

USD17660.00

automatic · electric · 6819 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/167"
)
car = res.json()
{
  "id": 167,
  "make": "Ford",
  "model": "Maverick",
  "year": 2025,
  "trim": null,
  "vin": "GAKMFVS70L8FEDE7G",
  "color": "Yellow",
  "mileage": 6819,
  "price": 17660,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "East Darrick",
  "region": "New Jersey",
  "countryAlpha2": "ZA",
  "sellerUserId": 112,
  "isSold": false,
  "createdAt": "2026-01-16T20:55:58.139Z",
  "updatedAt": "2026-04-24T10:26:50.328Z"
}
Draftbit