example-data.com

cars / #74

2014 Mercedes AMG GT

Mercedes

USD82450.00

automatic · gas · 180220 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/74"
)
car = res.json()
{
  "id": 74,
  "make": "Mercedes",
  "model": "AMG GT",
  "year": 2014,
  "trim": null,
  "vin": "53798PBF2V6N4MY7H",
  "color": "Beige",
  "mileage": 180220,
  "price": 82450,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Onastad",
  "region": "Nevada",
  "countryAlpha2": "MX",
  "sellerUserId": 103,
  "isSold": false,
  "createdAt": "2024-06-19T12:42:19.023Z",
  "updatedAt": "2025-05-31T07:18:07.591Z"
}
Draftbit