example-data.com

cars / #21

2020 Mercedes AMG GT

Mercedes

USD105120.00

automatic · gas · 21883 mi · Yellow

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/21"
)
car = res.json()
{
  "id": 21,
  "make": "Mercedes",
  "model": "AMG GT",
  "year": 2020,
  "trim": "Limited",
  "vin": "DS0XD728ZSJSK95T5",
  "color": "Yellow",
  "mileage": 21883,
  "price": 105120,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "van",
  "listingType": "sale",
  "city": "Wolffbury",
  "region": "Delaware",
  "countryAlpha2": "GB",
  "sellerUserId": 85,
  "isSold": true,
  "createdAt": "2025-08-25T03:28:53.002Z",
  "updatedAt": "2025-09-05T02:54:40.715Z"
}
Draftbit