2020 Toyota Tundra
Toyota
USD210.00
automatic · plugin_hybrid · 91424 mi · Green
cars / #103
Toyota
USD210.00
automatic · plugin_hybrid · 91424 mi · Green
curl -sS \
"https://example-data.com/api/v1/cars/103" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/103"
);
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/103"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/103"
)
car = res.json() {
"id": 103,
"make": "Toyota",
"model": "Tundra",
"year": 2020,
"trim": null,
"vin": "27PM7E4LD0LR40HGU",
"color": "Green",
"mileage": 91424,
"price": 210,
"currency": "USD",
"transmission": "automatic",
"fuelType": "plugin_hybrid",
"bodyType": "suv",
"listingType": "rent",
"city": "New Giovaniside",
"region": "Montana",
"countryAlpha2": "CO",
"sellerUserId": 106,
"isSold": false,
"createdAt": "2024-08-28T12:44:22.535Z",
"updatedAt": "2024-11-07T20:55:26.512Z"
}