2017 Honda Ridgeline
Honda
USD98400.00
automatic · gas · 21359 mi · Gray
cars / #43
Honda
USD98400.00
automatic · gas · 21359 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/43"
);
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/43"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/43"
)
car = res.json() {
"id": 43,
"make": "Honda",
"model": "Ridgeline",
"year": 2017,
"trim": null,
"vin": "EEGYM7CUSMSRRF85D",
"color": "Gray",
"mileage": 21359,
"price": 98400,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Erynside",
"region": "Texas",
"countryAlpha2": "AT",
"sellerUserId": 223,
"isSold": true,
"createdAt": "2024-09-03T19:25:42.985Z",
"updatedAt": "2024-09-12T10:38:11.764Z"
}