example-data.com

cars / #112

2010 Toyota Corolla

Toyota

USD84050.00

manual · gas · 21180 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/112"
)
car = res.json()
{
  "id": 112,
  "make": "Toyota",
  "model": "Corolla",
  "year": 2010,
  "trim": "Platinum",
  "vin": "2S2605N5AMTX0ZSC3",
  "color": "Beige",
  "mileage": 21180,
  "price": 84050,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Lake Toney",
  "region": "West Virginia",
  "countryAlpha2": "FR",
  "sellerUserId": 123,
  "isSold": true,
  "createdAt": "2025-03-17T23:10:06.180Z",
  "updatedAt": "2025-04-10T05:55:13.325Z"
}
Draftbit