example-data.com

cars / #79

2011 Ford Maverick

Ford

USD350.00

automatic · gas · 48371 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/79"
)
car = res.json()
{
  "id": 79,
  "make": "Ford",
  "model": "Maverick",
  "year": 2011,
  "trim": null,
  "vin": "DVW2DRNBUTPH7CZX8",
  "color": "Black",
  "mileage": 48371,
  "price": 350,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "rent",
  "city": "Port Soniaville",
  "region": "Maryland",
  "countryAlpha2": "PK",
  "sellerUserId": 208,
  "isSold": false,
  "createdAt": "2025-04-07T22:40:27.534Z",
  "updatedAt": "2025-09-14T01:31:59.735Z"
}
Draftbit