example-data.com

cars / #7

2024 Honda HR-V

Honda

USD70550.00

manual · gas · 16342 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/7"
)
car = res.json()
{
  "id": 7,
  "make": "Honda",
  "model": "HR-V",
  "year": 2024,
  "trim": "SE",
  "vin": "13U18875N9R4CMU0W",
  "color": "Silver",
  "mileage": 16342,
  "price": 70550,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Hiramville",
  "region": "North Carolina",
  "countryAlpha2": "PL",
  "sellerUserId": 125,
  "isSold": false,
  "createdAt": "2024-08-02T20:43:57.886Z",
  "updatedAt": "2024-10-30T12:31:36.972Z"
}
Draftbit