2014 Mercedes AMG GT
Mercedes
USD82450.00
automatic · gas · 180220 mi · Beige
Overview
cars / #74
Mercedes
USD82450.00
automatic · gas · 180220 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/74" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/74" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/74"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/74"
)
car = res.json() Response
{
"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"
}