2017 Honda HR-V
Honda
USD27470.00
automatic · gas · 92283 mi · Silver
Overview
cars / #121
Honda
USD27470.00
automatic · gas · 92283 mi · Silver
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/121" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/121" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/121"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/121"
)
car = res.json() Response
{
"id": 121,
"make": "Honda",
"model": "HR-V",
"year": 2017,
"trim": "Sport",
"vin": "P3NP503BPLV90NT64",
"color": "Silver",
"mileage": 92283,
"price": 27470,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Irvingmouth",
"region": "Iowa",
"countryAlpha2": "EG",
"sellerUserId": 52,
"isSold": false,
"createdAt": "2024-11-06T23:42:14.551Z",
"updatedAt": "2024-11-09T13:05:33.430Z"
}