example-data.com

cars / #53

2021 Honda Ridgeline

Honda

USD350.00

automatic · gas · 17434 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/53"
)
car = res.json()
{
  "id": 53,
  "make": "Honda",
  "model": "Ridgeline",
  "year": 2021,
  "trim": null,
  "vin": "EAKNM8EA518AZPSTH",
  "color": "Red",
  "mileage": 17434,
  "price": 350,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "wagon",
  "listingType": "rent",
  "city": "Allanland",
  "region": "Hawaii",
  "countryAlpha2": "JP",
  "sellerUserId": 122,
  "isSold": false,
  "createdAt": "2024-08-07T08:37:26.383Z",
  "updatedAt": "2024-10-20T20:42:03.307Z"
}
Draftbit