example-data.com
Menu
Browse docs and collections

Overview

cars / #63

2026 Toyota Tacoma

Toyota

USD92800.00

manual · hybrid · 2567 mi · Gray

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/63" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/63"
);
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/63"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/63"
)
car = res.json()

Response

{
  "id": 63,
  "make": "Toyota",
  "model": "Tacoma",
  "year": 2026,
  "trim": null,
  "vin": "C7KTWRYZWJZXV93DP",
  "color": "Gray",
  "mileage": 2567,
  "price": 92800,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "hybrid",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "McDermottport",
  "region": "Wyoming",
  "countryAlpha2": "KE",
  "sellerUserId": 45,
  "isSold": true,
  "createdAt": "2026-04-01T20:27:32.392Z",
  "updatedAt": "2026-04-04T17:34:46.016Z"
}