example-data.com

cars / #6

2011 Honda Ridgeline

Honda

USD8920.00

automatic · gas · 102708 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/6"
)
car = res.json()
{
  "id": 6,
  "make": "Honda",
  "model": "Ridgeline",
  "year": 2011,
  "trim": "Touring",
  "vin": "CGGYGR7GU710XU398",
  "color": "Yellow",
  "mileage": 102708,
  "price": 8920,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Lake Arvidstad",
  "region": "Utah",
  "countryAlpha2": "ZA",
  "sellerUserId": 123,
  "isSold": false,
  "createdAt": "2024-07-05T22:20:58.638Z",
  "updatedAt": "2026-04-08T18:24:03.999Z"
}
Draftbit