2024 Honda HR-V
Honda
USD70550.00
manual · gas · 16342 mi · Silver
Overview
cars / #7
Honda
USD70550.00
manual · gas · 16342 mi · Silver
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/7" ); 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/7"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/7"
)
car = res.json() Response
{
"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"
}