2020 Toyota Tundra
Toyota
USD210.00
automatic · plugin_hybrid · 91424 mi · Green
Overview
cars / #103
Toyota
USD210.00
automatic · plugin_hybrid · 91424 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/103" ); 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/103"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/103"
)
car = res.json() Response
{
"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"
}